diff options
Diffstat (limited to 'test/suite/main.c')
-rw-r--r-- | test/suite/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite/main.c b/test/suite/main.c index 24cb862fd..4f4ad1e84 100644 --- a/test/suite/main.c +++ b/test/suite/main.c @@ -228,7 +228,7 @@ int main(int argc, char **argv) { for (size_t i = 0; i < test_suite_size; ++i) { if (!test_name || !strcmp(test_name, test_suite[i].function_name)) { callbacks_init(); - CALL_AND_WAIT(bt_interface->enable(), adapter_state_changed); + CALL_AND_WAIT(bt_interface->enable(false), adapter_state_changed); if (test_suite[i].function()) { printf("[%4d] %-64s [%sPASS%s]\n", ++case_num, test_suite[i].function_name, GREEN, DEFAULT); ++pass; |