aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-03-31 17:00:14 +0200
committerAleksander Morgado <aleksander@aleksander.es>2020-04-08 16:35:09 +0200
commit72efb1b28da7daba1448def917d28b30014fde27 (patch)
tree4d162cb03753ac5d316b8f2585e48148f00c48fd /src/tests
parent3186a498c188a8686d6766a4c23bc051f3d00abe (diff)
sms-part-cdma: port to use object logging
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test-sms-part-cdma.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/test-sms-part-cdma.c b/src/tests/test-sms-part-cdma.c
index b1900fa8..0f36fe36 100644
--- a/src/tests/test-sms-part-cdma.c
+++ b/src/tests/test-sms-part-cdma.c
@@ -39,7 +39,7 @@ common_test_part_from_hexpdu (const gchar *hexpdu,
GError *error = NULL;
mm_dbg (" ");
- part = mm_sms_part_cdma_new_from_pdu (0, hexpdu, &error);
+ part = mm_sms_part_cdma_new_from_pdu (0, hexpdu, NULL, &error);
g_assert_no_error (error);
g_assert (part != NULL);
@@ -89,7 +89,7 @@ common_test_invalid_part_from_hexpdu (const gchar *hexpdu)
GError *error = NULL;
mm_dbg (" ");
- part = mm_sms_part_cdma_new_from_pdu (0, hexpdu, &error);
+ part = mm_sms_part_cdma_new_from_pdu (0, hexpdu, NULL, &error);
g_assert (part == NULL);
/* We don't care for the specific error type */
g_assert (error != NULL);
@@ -396,7 +396,7 @@ common_test_create_pdu (MMSmsCdmaTeleserviceId teleservice_id,
mm_sms_part_take_data (part, data_bytearray);
}
- pdu = mm_sms_part_cdma_get_submit_pdu (part, &len, &error);
+ pdu = mm_sms_part_cdma_get_submit_pdu (part, &len, NULL, &error);
mm_sms_part_free (part);
if (g_test_verbose ())