1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-29 13:01:13 +03:00

tests: Fixed a build warning introduced before.

This commit is contained in:
Andreas Schneider
2011-01-03 09:02:34 +01:00
parent e12253168c
commit 2464a25de7
5 changed files with 11 additions and 15 deletions

View File

@ -42,14 +42,14 @@ static void torture_options_set_proxycommand_notexist(void **state) {
int torture_run_tests(void) {
int rc;
ssh_init();
const UnitTest tests[] = {
unit_test_setup_teardown(torture_options_set_proxycommand, setup, teardown),
unit_test_setup_teardown(torture_options_set_proxycommand_notexist, setup, teardown),
};
ssh_init();
rc = run_tests(tests);
ssh_finalize();