diff options
author | Nicholas Guriev <nicholas@guriev.su> | 2021-04-24 23:10:17 +0300 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-05-11 13:33:48 +0200 |
commit | 10df92badc5906c86b07d2193afa8224fdcfa046 (patch) | |
tree | 31ea516b67e93a5f702afcff038be42b7f079821 /include | |
parent | 202b9c369b3ef9e454def1c7789e4cde4e37941a (diff) | |
download | ayatana-indicator-datetime-10df92badc5906c86b07d2193afa8224fdcfa046.tar.gz ayatana-indicator-datetime-10df92badc5906c86b07d2193afa8224fdcfa046.tar.bz2 ayatana-indicator-datetime-10df92badc5906c86b07d2193afa8224fdcfa046.zip |
Various tests fixes
* Provide default EdsEngine constructor for autotests.
* Temporary disable DST related tests. Something strange happens there.
* Do not create locale datetime for more reliable result on non-UTC systems.
* Specify audio_url for sample Alarms.
Fixes AyatanaIndicators/ayatana-indicator-datetime#32
Diffstat (limited to 'include')
-rw-r--r-- | include/datetime/engine-eds.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/datetime/engine-eds.h b/include/datetime/engine-eds.h index 96b0f76..12425b3 100644 --- a/include/datetime/engine-eds.h +++ b/include/datetime/engine-eds.h @@ -47,7 +47,8 @@ class Myself; class EdsEngine: public Engine { public: - EdsEngine(const std::shared_ptr<Myself> &myself); + EdsEngine(); + explicit EdsEngine(const std::shared_ptr<Myself> &myself); ~EdsEngine(); void get_appointments(const DateTime& begin, |