summaryrefslogtreecommitdiff
path: root/auto_tests/toxav_basic_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'auto_tests/toxav_basic_test.c')
-rw-r--r--auto_tests/toxav_basic_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auto_tests/toxav_basic_test.c b/auto_tests/toxav_basic_test.c
index 79c5b724..a3847640 100644
--- a/auto_tests/toxav_basic_test.c
+++ b/auto_tests/toxav_basic_test.c
@@ -131,13 +131,13 @@ START_TEST(test_AV_flows)
131 { 131 {
132 TOX_ERR_NEW error; 132 TOX_ERR_NEW error;
133 133
134 bootstrap = tox_new(NULL, NULL, 0, &error); 134 bootstrap = tox_new(NULL, &error);
135 ck_assert(error == TOX_ERR_NEW_OK); 135 ck_assert(error == TOX_ERR_NEW_OK);
136 136
137 Alice = tox_new(NULL, NULL, 0, &error); 137 Alice = tox_new(NULL, &error);
138 ck_assert(error == TOX_ERR_NEW_OK); 138 ck_assert(error == TOX_ERR_NEW_OK);
139 139
140 Bob = tox_new(NULL, NULL, 0, &error); 140 Bob = tox_new(NULL, &error);
141 ck_assert(error == TOX_ERR_NEW_OK); 141 ck_assert(error == TOX_ERR_NEW_OK);
142 } 142 }
143 143