aboutsummaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorXavi Garcia Mena <xavi.garcia.mena@canonical.com>2015-12-02 17:19:19 +0100
committerXavi Garcia Mena <xavi.garcia.mena@canonical.com>2015-12-02 17:19:19 +0100
commitc61e4c4f2c5e24f374c0d6e3c90c318443403c94 (patch)
tree014fb27c9dabbafecdb37707727c4f9a9182c3d0 /tests/integration
parentd9a00604c1d8e3103444053da39a4af17230903b (diff)
downloadayatana-indicator-sound-c61e4c4f2c5e24f374c0d6e3c90c318443403c94.tar.gz
ayatana-indicator-sound-c61e4c4f2c5e24f374c0d6e3c90c318443403c94.tar.bz2
ayatana-indicator-sound-c61e4c4f2c5e24f374c0d6e3c90c318443403c94.zip
Changes after review. Method to increment sync counter and integration test changed
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/test-indicator.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/integration/test-indicator.cpp b/tests/integration/test-indicator.cpp
index 54c56b5..f36a764 100644
--- a/tests/integration/test-indicator.cpp
+++ b/tests/integration/test-indicator.cpp
@@ -786,9 +786,8 @@ TEST_F(TestIndicator, PhoneNotificationWarningVolume)
// check the sync value before cancelling the dialog
bool isValid;
- qlonglong syncValue = getVolumeSyncValue(&isValid);
+ qlonglong syncValueBeforeCancel = getVolumeSyncValue(&isValid);
EXPECT_TRUE(isValid);
- EXPECT_EQ(0, syncValue);
// cancel the dialog
pressNotificationButton(idNotification, "cancel");
@@ -811,9 +810,9 @@ TEST_F(TestIndicator, PhoneNotificationWarningVolume)
).match());
// verify that the sync value is increased
- syncValue = getVolumeSyncValue(&isValid);
+ qlonglong syncValueAfterCancel = getVolumeSyncValue(&isValid);
EXPECT_TRUE(isValid);
- EXPECT_EQ(1, syncValue);
+ EXPECT_NE(syncValueBeforeCancel, syncValueAfterCancel);
// try again...
notificationsSpy.clear();