Bug 875437 - Close the debugger client in test_add_actors.js. r=past

This commit is contained in:
Dave Camp 2013-05-29 10:47:38 -07:00
parent adbbe89935
commit 8aca83884a

View File

@ -27,6 +27,7 @@ function run_test()
add_test(test_pre_init_tab_actor);
add_test(test_post_init_global_actor);
add_test(test_post_init_tab_actor);
add_test(close_client);
run_next_test();
}
@ -80,3 +81,7 @@ function test_post_init_tab_actor()
}
);
}
function close_client() {
gClient.close(() => run_next_test());
}