aboutsummaryrefslogtreecommitdiff
path: root/tests/test-actions.cpp
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-08 13:41:39 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-08 13:41:39 +0100
commitb7950517a055b6aee4d0806e32dbd466a6ae59d0 (patch)
treed10281b8d1c2221e25d1e0c159884df0ffda520a /tests/test-actions.cpp
parentdabd7c8c65ef0132dbf75360ae83e9505cbe614d (diff)
downloadayatana-indicator-datetime-b7950517a055b6aee4d0806e32dbd466a6ae59d0.tar.gz
ayatana-indicator-datetime-b7950517a055b6aee4d0806e32dbd466a6ae59d0.tar.bz2
ayatana-indicator-datetime-b7950517a055b6aee4d0806e32dbd466a6ae59d0.zip
README.md: Add some manual line breaks.
Diffstat (limited to 'tests/test-actions.cpp')
-rw-r--r--tests/test-actions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-actions.cpp b/tests/test-actions.cpp
index 0586bcc..1352ddb 100644
--- a/tests/test-actions.cpp
+++ b/tests/test-actions.cpp
@@ -268,13 +268,13 @@ TEST_F(ActionsFixture, SetCalendarDate)
EXPECT_TRUE(DateTime::is_same_day (now, m_state->calendar_month->month().get()));
// DST change in US
- now = DateTime::Local(2015, 3, 8, 9, 0, 0);
+ now = DateTime::Local(2015, 3, 8, 9, 0, 0);
v = g_variant_new_int64(now.to_unix());
g_action_group_activate_action (action_group, action_name, v);
EXPECT_TRUE(DateTime::is_same_day (now, m_state->calendar_month->month().get()));
// DST change in Europe
- now = DateTime::Local(2015, 3, 29, 9, 0, 0);
+ now = DateTime::Local(2015, 3, 29, 9, 0, 0);
v = g_variant_new_int64(now.to_unix());
g_action_group_activate_action (action_group, action_name, v);
EXPECT_TRUE(DateTime::is_same_day (now, m_state->calendar_month->month().get()));