Skip to content

Commit a2150b5

Browse files
committed
remove some TODOs
1 parent 72a5eb1 commit a2150b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/test/sansio/handshake/handshake_capabilities.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ BOOST_AUTO_TEST_CASE(db_nonempty_unsupported)
5050
// Run the test
5151
algo_test()
5252
.expect_read(server_hello_builder().caps(min_caps).auth_data(mnp_challenge).build())
53-
.check(fix, client_errc::server_unsupported); // TODO: some diagnostics here would be great
53+
.check(fix, client_errc::server_unsupported);
5454
}
5555

5656
// If the user didn't request a DB, we don't send it
@@ -126,7 +126,7 @@ BOOST_AUTO_TEST_CASE(multiq_true_unsupported)
126126
// Run the test
127127
algo_test()
128128
.expect_read(server_hello_builder().caps(min_caps).auth_data(mnp_challenge).build())
129-
.check(fix, client_errc::server_unsupported); // TODO: some diagnostics here would be great
129+
.check(fix, client_errc::server_unsupported);
130130
}
131131

132132
// We don't request it but the server supports it. We request the server to disable it
@@ -339,7 +339,7 @@ BOOST_AUTO_TEST_CASE(caps_mandatory)
339339
// Run the test
340340
algo_test()
341341
.expect_read(server_hello_builder().caps(tc.caps).auth_data(mnp_challenge).build())
342-
.check(fix, client_errc::server_unsupported); // TODO: some diagnostics here would be great
342+
.check(fix, client_errc::server_unsupported);
343343
}
344344
}
345345
}

0 commit comments

Comments
 (0)