Upstream version 7.36.152.0
[platform/framework/web/crosswalk.git] / src / xwalk / application / browser / application_storage_impl_unittest.cc
index 1567a5d..48c3ae0 100644 (file)
@@ -56,17 +56,12 @@ TEST_F(ApplicationStorageImplTest, DBInsert) {
       &error);
   ASSERT_TRUE(error.empty());
   ASSERT_TRUE(application);
-  std::set<std::string> events;
-  events.insert("test_events");
-  application->SetEvents(events);
   EXPECT_TRUE(app_storage_impl_->AddApplication(application.get(),
                                                 base::Time::FromDoubleT(0)));
   ApplicationData::ApplicationDataMap applications;
   ASSERT_TRUE(app_storage_impl_->GetInstalledApplications(applications));
   EXPECT_EQ(applications.size(), 1);
   EXPECT_TRUE(applications[application->ID()]);
-  EXPECT_EQ(applications[application->ID()]
-            ->GetEvents().count("test_events"), 1);
 }
 
 TEST_F(ApplicationStorageImplTest, DBDelete) {