Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/integration/hds_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,9 @@ class HdsIntegrationTest : public HttpIntegrationTest,
if (address->ip()->port() != endpoint.endpoint().address().socket_address().port_value()) {
return false;
}
// SocketAddress.address is a proto string, not std::string, so convert it before comparing.
if (address->ip()->addressAsString() !=
endpoint.endpoint().address().socket_address().address()) {
absl::string_view(endpoint.endpoint().address().socket_address().address())) {
return false;
}
return true;
Expand Down