aboutsummaryrefslogtreecommitdiff
path: root/tests/test-eds-ics-non-attending-alarms.cpp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-09-09 13:41:44 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2023-09-09 13:41:44 +0200
commit246c706c9e16485ae00a6bc04c9a560d01ffd6f6 (patch)
tree21baf51213b7722744890b08d1b7ebc0d697e2f9 /tests/test-eds-ics-non-attending-alarms.cpp
parent18e9350ddf455cce186eb3d0a428364fc521fd5b (diff)
parent7113c51ba4bba9da6cbbf320e6c04e1844e652e9 (diff)
downloadayatana-indicator-datetime-246c706c9e16485ae00a6bc04c9a560d01ffd6f6.tar.gz
ayatana-indicator-datetime-246c706c9e16485ae00a6bc04c9a560d01ffd6f6.tar.bz2
ayatana-indicator-datetime-246c706c9e16485ae00a6bc04c9a560d01ffd6f6.zip
Merge branch 'tari01-pr/fix-tests'
Attributes GH PR #111: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/111
Diffstat (limited to 'tests/test-eds-ics-non-attending-alarms.cpp')
-rw-r--r--tests/test-eds-ics-non-attending-alarms.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test-eds-ics-non-attending-alarms.cpp b/tests/test-eds-ics-non-attending-alarms.cpp
index ca1c8ed..629c1fc 100644
--- a/tests/test-eds-ics-non-attending-alarms.cpp
+++ b/tests/test-eds-ics-non-attending-alarms.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
- * Copyright 2021 Robert Tari
+ * Copyright 2021-2023 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -81,9 +81,10 @@ TEST_F(VAlarmFixture, NonAttendingEvent)
// the planner should match what we've got in the calendar.ics file
const auto appts = planner->appointments().get();
- EXPECT_EQ(2, appts.size());
+ EXPECT_EQ(3, appts.size());
EXPECT_EQ(appts[0].begin, DateTime(gtz, 2016, 4, 4, 16, 0, 0));
- EXPECT_EQ(appts[1].begin, DateTime(gtz, 2016, 4, 6, 16, 0, 0));
+ EXPECT_EQ(appts[1].begin, DateTime(gtz, 2016, 4, 5, 16, 0, 0));
+ EXPECT_EQ(appts[2].begin, DateTime(gtz, 2016, 4, 6, 16, 0, 0));
// cleanup
g_time_zone_unref(gtz);