Skip to content

Commit 1ab0407

Browse files
committed
Fixed typo in test
1 parent 2012222 commit 1ab0407

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

registry/tests/test_registry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def test_registry_with_authentication():
2121
).with_bind_ports(5000, 5000) as registry_container:
2222
url: str = f"http://{registry_container.get_registry()}/v2/_catalog"
2323

24-
response: Response = get(url, auth=HTTPBasicAuth(REGISTRY_USERNAME, REGISTRY_PASSWORD)
25-
)
24+
response: Response = get(url, auth=HTTPBasicAuth(REGISTRY_USERNAME, REGISTRY_PASSWORD))
2625

2726
assert response.status_code == 200

0 commit comments

Comments
 (0)