summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel d'Andrada <daniel.dandrada@canonical.com>2015-05-29 09:52:58 -0300
committerDaniel d'Andrada <daniel.dandrada@canonical.com>2015-05-29 09:52:58 -0300
commit3dd621fe8a4a3578fa345995e2d2a4000d148c52 (patch)
tree3b21cc2c17ffee8f8c14360d9f01cc635b431d2b
parent114ccb343e659fda94d37afc7f0cf0eefd561987 (diff)
work around a bug in gtest+gcc+cross-compilation
-rw-r--r--tests/modules/ApplicationManager/application_manager_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modules/ApplicationManager/application_manager_test.cpp b/tests/modules/ApplicationManager/application_manager_test.cpp
index a92c5f4..6184721 100644
--- a/tests/modules/ApplicationManager/application_manager_test.cpp
+++ b/tests/modules/ApplicationManager/application_manager_test.cpp
@@ -480,7 +480,7 @@ TEST_F(ApplicationManagerTests,appStartedByShell)
EXPECT_EQ(Application::Starting, theApp->state());
EXPECT_EQ(appId, theApp->appId());
EXPECT_EQ(name, theApp->name());
- EXPECT_EQ(false, theApp->canBeResumed());
+ EXPECT_FALSE(theApp->canBeResumed());
// check signals were emitted
EXPECT_EQ(2, countSpy.count()); //FIXME(greyback)