Skip to content

Commit 393cf31

Browse files
committed
fix(tests): wrong domain name
1 parent bece37b commit 393cf31

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/integrations/gateway/test_gateway.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ def test_integration_gateway(cli_runner: CliRunner):
2222
# Check general routing configuration
2323
# Wait as the gateway is not immediately available
2424
resp = utils.wait_for_body_text(
25-
domain_name=gateway_domain, body=messages["/health"]
25+
domain_name=gateway_domain + "/health", body=messages["/health"]
2626
)
2727
assert resp.status_code == 200
28-
assert resp.text == messages["/health"]
2928

3029
# Test with common prefix with configured routes
3130
resp = requests.get(

0 commit comments

Comments
 (0)