Update assertion to not check for port

This commit is contained in:
Yong Wen Chua 2021-04-06 17:10:38 +08:00
parent 85aa7f2785
commit db406b700c
No known key found for this signature in database
GPG Key ID: BE88BDECC1B0DE8D
1 changed files with 3 additions and 1 deletions

View File

@ -33,5 +33,7 @@ load helpers
}
@test "terminating-gateway adds the Host header for connection to s3" {
assert_expected_fortio_host_header "localhost:8382" localhost 5000
# Envoy does not rewrite the port
# See https://github.com/envoyproxy/envoy/pull/504#discussion_r102614466
assert_expected_fortio_host_header "localhost" localhost 5000
}