diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2016-03-31 15:51:29 -0300 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-07-05 01:41:04 +0200 |
commit | b1031b1de834f246bba806cd51bfbb22f5c15b16 (patch) | |
tree | 721bedfc5523c1f124c32e850bdb3354928ec011 /tests/test-eds-ics-tzids-2.cpp | |
parent | 7965d5b411db00de44f5c43dffac935e70347ec6 (diff) | |
download | ayatana-indicator-datetime-b1031b1de834f246bba806cd51bfbb22f5c15b16.tar.gz ayatana-indicator-datetime-b1031b1de834f246bba806cd51bfbb22f5c15b16.tar.bz2 ayatana-indicator-datetime-b1031b1de834f246bba806cd51bfbb22f5c15b16.zip |
Remove type property from Alarm.
Diffstat (limited to 'tests/test-eds-ics-tzids-2.cpp')
-rw-r--r-- | tests/test-eds-ics-tzids-2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-eds-ics-tzids-2.cpp b/tests/test-eds-ics-tzids-2.cpp index b1a344a..c8b0370 100644 --- a/tests/test-eds-ics-tzids-2.cpp +++ b/tests/test-eds-ics-tzids-2.cpp @@ -86,7 +86,7 @@ TEST_F(VAlarmFixture, MultipleAppointments) appt->summary = "National Incubator Initiative for Clean Energy (NIICE) FOA: Pre-Concept Paper Informational Webinar"; appt->begin = DateTime{gtz,2014,1,21,11,0,0}; appt->end = DateTime{gtz,2014,1,21,13,0,0}; - appt->alarms = std::vector<Alarm>{ Alarm({Alarm::TEXT, "Reminder", "", DateTime(gtz,2014,1,21,10,45,0)}) }; + appt->alarms = std::vector<Alarm>{ Alarm({"Reminder", "", DateTime(gtz,2014,1,21,10,45,0)}) }; // compare it to what we actually loaded... const auto appts = planner->appointments().get(); |