aboutsummaryrefslogtreecommitdiff
path: root/tests/test-notification.cpp
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2016-05-14 12:20:00 -0500
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-08-29 14:37:39 +0200
commit8e58bff9438f67066f72a28cfdf7b421f3345d1e (patch)
tree6d4cbf11ca9107dc021eff2699da88178a643be1 /tests/test-notification.cpp
parentb639e39dc4a2aa82a40f0a6922577b65ff3dd35f (diff)
downloadayatana-indicator-datetime-8e58bff9438f67066f72a28cfdf7b421f3345d1e.tar.gz
ayatana-indicator-datetime-8e58bff9438f67066f72a28cfdf7b421f3345d1e.tar.bz2
ayatana-indicator-datetime-8e58bff9438f67066f72a28cfdf7b421f3345d1e.zip
sync tests with previous commit's Snap::Response change
Diffstat (limited to 'tests/test-notification.cpp')
-rw-r--r--tests/test-notification.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test-notification.cpp b/tests/test-notification.cpp
index d04cc8d..74a0b92 100644
--- a/tests/test-notification.cpp
+++ b/tests/test-notification.cpp
@@ -53,7 +53,7 @@ TEST_F(NotificationFixture,Notification)
auto settings = std::make_shared<Settings>();
auto ne = std::make_shared<ayatana::indicator::notifications::Engine>(APP_NAME);
auto sb = std::make_shared<ayatana::indicator::notifications::DefaultSoundBuilder>();
- auto func = [this](const Appointment&, const Alarm&){g_idle_add(quit_idle, loop);};
+ auto func = [this](const Appointment&, const Alarm&, const Snap::Response&){g_idle_add(quit_idle, loop);};
// combinatorial factor #1: event type
struct {
@@ -143,7 +143,7 @@ TEST_F(NotificationFixture,Notification)
// run the test
auto snap = create_snap(ne, sb, settings);
- (*snap)(test_appt.appt, appt.alarms.front(), func, func);
+ (*snap)(test_appt.appt, appt.alarms.front(), func);
// confirm that the notification was as expected
if (expected_notify_called) {
@@ -194,4 +194,3 @@ TEST_F(NotificationFixture,Notification)
}
}
}
-