Skip to content

Commit

Permalink
update ws test
Browse files Browse the repository at this point in the history
  • Loading branch information
markaren committed Sep 28, 2024
1 parent 686e20b commit 31806c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_ws.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ TEST_CASE("test Websocket") {
client.close();
ws.stop();

CHECK(serverOpen == true);
CHECK(serverClose == true);
CHECK(clientOpen == true);
CHECK(clientClose == true);
CHECK(serverOpen.load());
CHECK(serverClose.load());
CHECK(clientOpen.load());
CHECK(clientClose.load());

CHECK(servermsg == "Hello from client!");
CHECK(clientmsg == "Hello from server!");
Expand Down

0 comments on commit 31806c6

Please sign in to comment.