aboutsummaryrefslogtreecommitdiff
path: root/tests/test-eds-ics-all-day-events.cpp
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2024-02-01 18:44:01 +0100
committerRobert Tari <robert@tari.in>2024-02-01 18:44:01 +0100
commitd77ad890a0bb3b8e366c6dea23ca93f71e35d5d5 (patch)
treebb39fcf3f5051bec3e78d92974403571778e351a /tests/test-eds-ics-all-day-events.cpp
parent0692cc58d1046b79671491866294692a48b05554 (diff)
downloadayatana-indicator-datetime-d77ad890a0bb3b8e366c6dea23ca93f71e35d5d5.tar.gz
ayatana-indicator-datetime-d77ad890a0bb3b8e366c6dea23ca93f71e35d5d5.tar.bz2
ayatana-indicator-datetime-d77ad890a0bb3b8e366c6dea23ca93f71e35d5d5.zip
Fix tests relying on the default EDS appointment colour
Diffstat (limited to 'tests/test-eds-ics-all-day-events.cpp')
-rw-r--r--tests/test-eds-ics-all-day-events.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/test-eds-ics-all-day-events.cpp b/tests/test-eds-ics-all-day-events.cpp
index 93bc9e3..0fa40fd 100644
--- a/tests/test-eds-ics-all-day-events.cpp
+++ b/tests/test-eds-ics-all-day-events.cpp
@@ -1,6 +1,6 @@
/*
* Copyright 2015 Canonical Ltd.
- * Copyright 2021 Robert Tari
+ * Copyright 2021-2024 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,7 +81,6 @@ TEST_F(VAlarmFixture, MultipleAppointments)
// what we expect to get...
Appointment expected_appt;
expected_appt.uid = "20150521T111538Z-7449-1000-3572-0@ghidorah";
- expected_appt.color = "#becedd";
expected_appt.summary = "Memorial Day";
expected_appt.begin = DateTime{gtz,2015,5,25,0,0,0};
expected_appt.end = DateTime{gtz,2015,5,26,0,0,0};
@@ -93,10 +92,14 @@ TEST_F(VAlarmFixture, MultipleAppointments)
EXPECT_EQ(expected_appt.begin, appt.begin);
EXPECT_EQ(expected_appt.end, appt.end);
EXPECT_EQ(expected_appt.uid, appt.uid);
- EXPECT_EQ(expected_appt.color, appt.color);
EXPECT_EQ(expected_appt.summary, appt.summary);
EXPECT_EQ(0, appt.alarms.size());
+ EXPECT_PRED3([](auto sColourIn, auto sColourExpected1, auto sColourExpected2)
+ {
+ return sColourIn == sColourExpected1 || sColourIn == sColourExpected2;
+ }, appt.color, "#becedd", "#62a0ea");
+
// cleanup
g_time_zone_unref(gtz);
}