summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/dbus/test-tpl-log-store-xml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/dbus/test-tpl-log-store-xml.c b/tests/dbus/test-tpl-log-store-xml.c
index f915dd4..0ac9e26 100644
--- a/tests/dbus/test-tpl-log-store-xml.c
+++ b/tests/dbus/test-tpl-log-store-xml.c
@@ -494,7 +494,7 @@ test_add_call_event (XmlTestCaseFixture *fixture,
"receiver", contact,
"timestamp", timestamp,
/* TplCallEvent */
- "duration", 1234,
+ "duration", (gint64) 1234,
"end-actor", me,
"end-reason", TPL_CALL_END_REASON_USER_REQUESTED,
"detailed-end-reason", TP_ERROR_STR_CANCELLED,
@@ -523,7 +523,7 @@ test_add_call_event (XmlTestCaseFixture *fixture,
"receiver", me,
"timestamp", timestamp,
/* TplCallEvent */
- "duration", 2345,
+ "duration", (gint64) 2345,
"end-actor", contact,
"end-reason", TPL_CALL_END_REASON_USER_REQUESTED,
"detailed-end-reason", TP_ERROR_STR_TERMINATED,
@@ -552,7 +552,7 @@ test_add_call_event (XmlTestCaseFixture *fixture,
"receiver", room,
"timestamp", timestamp,
/* TplCallEvent */
- "duration", 3456,
+ "duration", (gint64) 3456,
"end-actor", room,
"end-reason", TPL_CALL_END_REASON_USER_REQUESTED,
"detailed-end-reason", TP_ERROR_STR_CHANNEL_KICKED,
@@ -581,7 +581,7 @@ test_add_call_event (XmlTestCaseFixture *fixture,
"receiver", room,
"timestamp", timestamp,
/* TplCallEvent */
- "duration", -1,
+ "duration", (gint64) -1,
"end-actor", room,
"end-reason", TPL_CALL_END_REASON_NO_ANSWER,
"detailed-end-reason", "",