summaryrefslogtreecommitdiff
path: root/auto_tests/bootstrap_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/bootstrap_test.c
parent77e025fae48a4f9cf6cf19a359b6c423545f3cc7 (diff)
Consistently use camel case enum names.
Including in tests and implementation files.
Diffstat (limited to 'auto_tests/bootstrap_test.c')
-rw-r--r--auto_tests/bootstrap_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/bootstrap_test.c b/auto_tests/bootstrap_test.c
index 86cbf99e..d9de339e 100644
--- a/auto_tests/bootstrap_test.c
+++ b/auto_tests/bootstrap_test.c
@@ -32,7 +32,7 @@ int main(void)
32 c_sleep(ITERATION_INTERVAL); 32 c_sleep(ITERATION_INTERVAL);
33 } while (tox_self_get_connection_status(tox_udp) == TOX_CONNECTION_NONE); 33 } while (tox_self_get_connection_status(tox_udp) == TOX_CONNECTION_NONE);
34 34
35 const TOX_CONNECTION status = tox_self_get_connection_status(tox_udp); 35 const Tox_Connection status = tox_self_get_connection_status(tox_udp);
36 ck_assert_msg(status == TOX_CONNECTION_UDP, 36 ck_assert_msg(status == TOX_CONNECTION_UDP,
37 "expected connection status to be UDP, but got %d", status); 37 "expected connection status to be UDP, but got %d", status);
38 printf("Connection (UDP): %d\n", tox_self_get_connection_status(tox_udp)); 38 printf("Connection (UDP): %d\n", tox_self_get_connection_status(tox_udp));