Skip to content

Commit

Permalink
Remove test-utility wrapper for Buffer::toString(). (#51)
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Marantz <jmarantz@google.com>
  • Loading branch information
jmarantz authored and Matt Klein committed Jun 27, 2018
1 parent e281d15 commit 92307d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion echo2_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ TEST_P(Echo2IntegrationTest, Echo) {
RawConnectionDriver connection(
lookupPort("listener_0"), buffer,
[&](Network::ClientConnection&, const Buffer::Instance& data) -> void {
response.append(TestUtility::bufferToString(data));
response.append(data.toString());
connection.close();
},
GetParam());
Expand Down

0 comments on commit 92307d7

Please sign in to comment.