Fixup bad revert of 500

This commit is contained in:
Nick O'Leary
2018-11-02 00:12:44 +00:00
parent 4daba0ae5c
commit ee30733e24
2 changed files with 22 additions and 19 deletions

View File

@ -283,20 +283,20 @@ int test_connect_disconnect_connect() {
int main()
{
SUITE("Connect");
test_connect_non_clean_session();
// test_connect_fails_no_network();
// test_connect_fails_on_no_response();
//
// test_connect_properly_formatted();
// test_connect_accepts_username_password();
// test_connect_fails_on_bad_rc();
// test_connect_properly_formatted_hostname();
//
// test_connect_accepts_username_no_password();
// test_connect_ignores_password_no_username();
// test_connect_with_will();
// test_connect_with_will_username_password();
// test_connect_disconnect_connect();
test_connect_fails_no_network();
test_connect_fails_on_no_response();
test_connect_properly_formatted();
test_connect_non_clean_session();
test_connect_accepts_username_password();
test_connect_fails_on_bad_rc();
test_connect_properly_formatted_hostname();
test_connect_accepts_username_no_password();
test_connect_ignores_password_no_username();
test_connect_with_will();
test_connect_with_will_username_password();
test_connect_disconnect_connect();
FINISH
}