Adjust to change of support ambient 64/103164/1 accepted/tizen/3.0/common/20161208.153342 accepted/tizen/3.0/ivi/20161208.062723 accepted/tizen/3.0/mobile/20161208.062401 accepted/tizen/3.0/tv/20161208.062549 accepted/tizen/3.0/wearable/20161208.062633 submit/tizen_3.0/20161207.072901
authorSangyoon Jang <s89.jang@samsung.com>
Wed, 7 Dec 2016 11:25:04 +0000 (20:25 +0900)
committerSangyoon Jang <s89.jang@samsung.com>
Wed, 7 Dec 2016 11:25:04 +0000 (20:25 +0900)
Requires:
 - https://review.tizen.org/gerrit/102774

Change-Id: I2417cabc6cf6af7d2097abf11e950dba2ae15902
Signed-off-by: Sangyoon Jang <s89.jang@samsung.com>
src/unit_tests/manifest_test_watch_application.cc

index ea2b39619dbd25d7b95e7faedb00a33fa2c37b2a..33b0979cfe566285d1fd1ec05ab9c7f2d1e13ddd 100644 (file)
@@ -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) {