jwadow commited on
Commit ·
dc3f5b6
1
Parent(s): fe16356
test(auth): update api_host test for new q.{region}.amazonaws.com endpoint
Browse files
tests/unit/test_auth_manager.py
CHANGED
|
@@ -483,9 +483,9 @@ class TestKiroAuthManagerProperties:
|
|
| 483 |
region="us-east-1"
|
| 484 |
)
|
| 485 |
|
| 486 |
-
print("Verification: api_host contains
|
| 487 |
print(f"api_host: {manager.api_host}")
|
| 488 |
-
assert "
|
| 489 |
assert "us-east-1" in manager.api_host
|
| 490 |
|
| 491 |
def test_fingerprint_property(self):
|
|
|
|
| 483 |
region="us-east-1"
|
| 484 |
)
|
| 485 |
|
| 486 |
+
print("Verification: api_host contains q.{region}.amazonaws.com pattern...")
|
| 487 |
print(f"api_host: {manager.api_host}")
|
| 488 |
+
assert "q.us-east-1.amazonaws.com" in manager.api_host
|
| 489 |
assert "us-east-1" in manager.api_host
|
| 490 |
|
| 491 |
def test_fingerprint_property(self):
|