This is an automated email from the ASF dual-hosted git repository.
vincbeck pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 7605a097b36 Fix AWS auth manager system test (#47876)
7605a097b36 is described below
commit 7605a097b367c36165ffb38e3c4330f702380670
Author: Vincent <[email protected]>
AuthorDate: Mon Mar 17 15:05:42 2025 -0400
Fix AWS auth manager system test (#47876)
---
providers/amazon/tests/system/amazon/aws/tests/test_aws_auth_manager.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/amazon/tests/system/amazon/aws/tests/test_aws_auth_manager.py
b/providers/amazon/tests/system/amazon/aws/tests/test_aws_auth_manager.py
index 550af6c8c41..7edd9d1ccee 100644
--- a/providers/amazon/tests/system/amazon/aws/tests/test_aws_auth_manager.py
+++ b/providers/amazon/tests/system/amazon/aws/tests/test_aws_auth_manager.py
@@ -204,5 +204,5 @@ class TestAwsAuthManager:
token = response.cookies.get(COOKIE_NAME_JWT_TOKEN)
assert response.status_code == 303
assert "location" in response.headers
- assert response.headers["location"] == "http://localhost:28080"
+ assert response.headers["location"] == "http://localhost:28080/"
assert token is not None