Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
claucece committed Jun 24, 2017
1 parent 898e3a6 commit d335b38
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ int main(int argc, char **argv) {

g_test_init(&argc, &argv, NULL);

g_test_add_func("/api/multiple_clients", test_api_multiple_clients);

g_test_add_func("/otrv4/instance_tag/generates_when_file_empty",
test_instance_tag_generates_tag_when_file_empty);
g_test_add_func("/otrv4/instance_tag/generates_when_file_is_full",
Expand Down Expand Up @@ -182,5 +180,8 @@ int main(int argc, char **argv) {
g_test_add_func("/client/invalid_auth_r_msg_in_not_waiting_auth_r",
test_invalid_auth_r_msg_in_not_waiting_auth_r);

// TODO: this has to be at the end. Is that ok?

g_test_add_func("/api/multiple_clients", test_api_multiple_clients);
return g_test_run();
}

0 comments on commit d335b38

Please sign in to comment.