Skip to content

Commit

Permalink
fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Dec 5, 2018
1 parent 7870544 commit 4ae4fa4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rcl_action/test/rcl_action/test_action_communication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,9 @@ TEST_F(CLASSNAME(TestActionCommunication, RMW_IMPLEMENTATION), test_valid_result

// Check that the result response was received correctly
EXPECT_EQ(outgoing_result_response.status, incoming_result_response.status);
ASSERT_EQ(outgoing_result_response.response.sequence.size, incoming_result_response.response.sequence.size);
ASSERT_EQ(
outgoing_result_response.response.sequence.size,
incoming_result_response.response.sequence.size);
EXPECT_TRUE(!memcmp(
outgoing_result_response.response.sequence.data,
incoming_result_response.response.sequence.data,
Expand Down

0 comments on commit 4ae4fa4

Please sign in to comment.