Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauch committed Sep 26, 2022
1 parent 4009ad2 commit c45f36f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_script_sender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ TEST_F(ScriptSenderTest, wrong_request_command)
std::string wrong_request = "request\n";
client.send(wrong_request);

// We shouldn't receive an answer when sending the wrong request to the server, the result should therefore be an empty
// string
// We shouldn't receive an answer when sending the wrong request to the server, the result should therefore be an
// empty string
std::string actual_anwser = client.recv();
std::string expected_anwser = "";
EXPECT_EQ(expected_anwser, actual_anwser);
Expand All @@ -120,4 +120,4 @@ int main(int argc, char* argv[])
::testing::InitGoogleTest(&argc, argv);

return RUN_ALL_TESTS();
}
}

0 comments on commit c45f36f

Please sign in to comment.