Skip to content

Commit

Permalink
stop including run_auto_tests.h in conference test
Browse files Browse the repository at this point in the history
  • Loading branch information
zugz committed Aug 19, 2018
1 parent 56e617d commit bc82582
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion auto_tests/conference_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ typedef struct State {
bool invited_next;
} State;

#include "run_auto_test.h"
static bool iterate_all(uint32_t tox_count, Tox **toxes, State *state)
{
for (uint32_t i = 0; i < tox_count; i++) {
tox_iterate(toxes[i], &state[i]);
}

return true;
}

static void handle_self_connection_status(
Tox *tox, TOX_CONNECTION connection_status, void *user_data)
Expand Down

0 comments on commit bc82582

Please sign in to comment.