From 00b38eb7f7b724d24f1eba07158f65396325d661 Mon Sep 17 00:00:00 2001 From: Seonah Moon Date: Mon, 28 Aug 2017 20:22:09 +0900 Subject: [PATCH] [UTC][url-download][NonACR][bug fix] Change-Id: If11a009f3188304231baf086fffecc95add3d6eb Signed-off-by: Seonah Moon --- src/utc/url-download/utc-download-get-network-type.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/utc/url-download/utc-download-get-network-type.c b/src/utc/url-download/utc-download-get-network-type.c index 4ba60f4..ac39bad 100755 --- a/src/utc/url-download/utc-download-get-network-type.c +++ b/src/utc/url-download/utc-download-get-network-type.c @@ -51,8 +51,9 @@ int utc_download_get_network_type_p1(void) if (!g_bIsDownloadFeatureSupported) { assert_eq(retcode, DOWNLOAD_ERROR_NOT_SUPPORTED); } else{ - assert_eq(retcode, DOWNLOAD_ERROR_NONE); - assert_eq(output, input); + assert_eq(retcode, DOWNLOAD_ERROR_NONE); + if (g_bIsTelephonyFeatureSupported) + assert_eq(output, input); } return 0; } -- 2.7.4