From 99e20d2b1a7199c0bf22ddb1783ab09ef7311ea5 Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Wed, 7 Dec 2016 20:25:04 +0900 Subject: [PATCH] Adjust to change of support ambient Requires: - https://review.tizen.org/gerrit/102774 Change-Id: I2417cabc6cf6af7d2097abf11e950dba2ae15902 Signed-off-by: Sangyoon Jang --- src/unit_tests/manifest_test_watch_application.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/unit_tests/manifest_test_watch_application.cc b/src/unit_tests/manifest_test_watch_application.cc index ea2b396..33b0979 100644 --- a/src/unit_tests/manifest_test_watch_application.cc +++ b/src/unit_tests/manifest_test_watch_application.cc @@ -85,7 +85,7 @@ TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_Missing) { ASSERT_TRUE(runner.Run()); application_x* app = GetSingleApp(runner.GetManifest()); ASSERT_NE(app, nullptr); - ASSERT_CSTR_EQ(app->ambient_support, "false"); + ASSERT_CSTR_EQ(app->support_ambient, "false"); } TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_False) { @@ -93,7 +93,7 @@ TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_False) { ASSERT_TRUE(runner.Run()); application_x* app = GetSingleApp(runner.GetManifest()); ASSERT_NE(app, nullptr); - ASSERT_CSTR_EQ(app->ambient_support, "false"); + ASSERT_CSTR_EQ(app->support_ambient, "false"); } @@ -102,7 +102,7 @@ TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_True) { ASSERT_TRUE(runner.Run()); application_x* app = GetSingleApp(runner.GetManifest()); ASSERT_NE(app, nullptr); - ASSERT_CSTR_EQ(app->ambient_support, "true"); + ASSERT_CSTR_EQ(app->support_ambient, "true"); } TEST_F(ManifestTest, WatchApplicationElement_AmbientSupport_Invalid) { -- 2.7.4