From e51023bf4c7ab986b5abcfb3c9964ede7052596e Mon Sep 17 00:00:00 2001 From: Benjamin Simon Date: Fri, 13 Dec 2024 10:52:10 +0100 Subject: [PATCH] fix `echo_http_server_post` returning double slash path --- localstack-core/localstack/testing/pytest/fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localstack-core/localstack/testing/pytest/fixtures.py b/localstack-core/localstack/testing/pytest/fixtures.py index 7312c7cb2d3a7..95bc8b3db87bb 100644 --- a/localstack-core/localstack/testing/pytest/fixtures.py +++ b/localstack-core/localstack/testing/pytest/fixtures.py @@ -2137,7 +2137,7 @@ def echo_http_server_post(echo_http_server): if is_aws_cloud(): return f"{PUBLIC_HTTP_ECHO_SERVER_URL}/post" - return f"{echo_http_server}/post" + return f"{echo_http_server}post" def create_policy_doc(effect: str, actions: List, resource=None) -> Dict: