summaryrefslogtreecommitdiff
path: root/auto_tests/typing_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-10-08 21:05:14 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-10-09 17:33:37 +0000
commit605dfe882c52bfad4dee9678a69e4b816d93431d (patch)
tree10432adc5d3716cb28b833c6e156218b67c23494 /auto_tests/typing_test.c
parent77e025fae48a4f9cf6cf19a359b6c423545f3cc7 (diff)
Consistently use camel case enum names.
Including in tests and implementation files.
Diffstat (limited to 'auto_tests/typing_test.c')
-rw-r--r--auto_tests/typing_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/typing_test.c b/auto_tests/typing_test.c
index 60968876..54577420 100644
--- a/auto_tests/typing_test.c
+++ b/auto_tests/typing_test.c
@@ -48,7 +48,7 @@ static void test_typing(Tox **toxes, State *state)
48 iterate_all_wait(2, toxes, state, 200); 48 iterate_all_wait(2, toxes, state, 200);
49 } while (state[1].friend_is_typing); 49 } while (state[1].friend_is_typing);
50 50
51 TOX_ERR_FRIEND_QUERY err_t; 51 Tox_Err_Friend_Query err_t;
52 ck_assert_msg(tox_friend_get_typing(toxes[1], 0, &err_t) == 0, 52 ck_assert_msg(tox_friend_get_typing(toxes[1], 0, &err_t) == 0,
53 "tox_friend_get_typing should have returned false, but it didn't"); 53 "tox_friend_get_typing should have returned false, but it didn't");
54 ck_assert_msg(err_t == TOX_ERR_FRIEND_QUERY_OK, "tox_friend_get_typing call did not return correct error"); 54 ck_assert_msg(err_t == TOX_ERR_FRIEND_QUERY_OK, "tox_friend_get_typing call did not return correct error");