diff options
Diffstat (limited to 'auto_tests/toxav_basic_test.c')
-rw-r--r-- | auto_tests/toxav_basic_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auto_tests/toxav_basic_test.c b/auto_tests/toxav_basic_test.c index 5c6daefa..89c2918a 100644 --- a/auto_tests/toxav_basic_test.c +++ b/auto_tests/toxav_basic_test.c | |||
@@ -88,7 +88,7 @@ static void t_accept_friend_request_cb(Tox *m, const uint8_t *public_key, const | |||
88 | void *userdata) | 88 | void *userdata) |
89 | { | 89 | { |
90 | if (length == 7 && memcmp("gentoo", data, 7) == 0) { | 90 | if (length == 7 && memcmp("gentoo", data, 7) == 0) { |
91 | ck_assert(tox_friend_add_norequest(m, public_key, nullptr) != (uint32_t) ~0); | 91 | ck_assert(tox_friend_add_norequest(m, public_key, nullptr) != (uint32_t) -1); |
92 | } | 92 | } |
93 | } | 93 | } |
94 | 94 | ||
@@ -191,7 +191,7 @@ static void test_av_flows(void) | |||
191 | tox_bootstrap(Alice, "localhost", dht_port, dht_key, nullptr); | 191 | tox_bootstrap(Alice, "localhost", dht_port, dht_key, nullptr); |
192 | tox_bootstrap(Bob, "localhost", dht_port, dht_key, nullptr); | 192 | tox_bootstrap(Bob, "localhost", dht_port, dht_key, nullptr); |
193 | 193 | ||
194 | ck_assert(tox_friend_add(Bob, address, (const uint8_t *)"gentoo", 7, nullptr) != (uint32_t) ~0); | 194 | ck_assert(tox_friend_add(Bob, address, (const uint8_t *)"gentoo", 7, nullptr) != (uint32_t) -1); |
195 | 195 | ||
196 | uint8_t off = 1; | 196 | uint8_t off = 1; |
197 | 197 | ||