diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-03 16:05:17 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-04-08 16:35:09 +0200 |
commit | 740827bde1d03c5f8b187f70be8ffb6ae3ca1785 (patch) | |
tree | 36969d71f5051da7b9276e7d1fb646184094db27 /src/tests/test-modem-helpers.c | |
parent | f76489cd8179000c1f4e6bc7b72d60933a6c08b9 (diff) |
modem-helpers: parse cgdcont test parser to use object logging
Diffstat (limited to 'src/tests/test-modem-helpers.c')
-rw-r--r-- | src/tests/test-modem-helpers.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test-modem-helpers.c b/src/tests/test-modem-helpers.c index 3968850a..f4947904 100644 --- a/src/tests/test-modem-helpers.c +++ b/src/tests/test-modem-helpers.c @@ -2440,7 +2440,7 @@ test_cgdcont_test_results (const gchar *desc, g_debug ("Testing %s +CGDCONT test response...", desc); - results = mm_3gpp_parse_cgdcont_test_response (reply, &error); + results = mm_3gpp_parse_cgdcont_test_response (reply, NULL, &error); g_assert (results); g_assert_no_error (error); g_assert_cmpuint (g_list_length (results), ==, expected_results_len); @@ -2859,7 +2859,7 @@ test_cid_selection (void) test = &cid_selection_tests[i]; - context_format_list = test->cgdcont_test ? mm_3gpp_parse_cgdcont_test_response (test->cgdcont_test, NULL) : NULL; + context_format_list = test->cgdcont_test ? mm_3gpp_parse_cgdcont_test_response (test->cgdcont_test, NULL, NULL) : NULL; context_list = test->cgdcont_query ? mm_3gpp_parse_cgdcont_read_response (test->cgdcont_query, NULL) : NULL; cid = mm_3gpp_select_best_cid (test->apn, test->ip_family, |