Skip to content

Commit

Permalink
Update test/integration/bucketfs_test.py
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Kuhnke <[email protected]>
  • Loading branch information
Nicoretti and ckunki authored Feb 16, 2024
1 parent 952759e commit 62f44c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/bucketfs_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def test_list_files_in_bucket(
def test_ssl_verification_for_bucketfs_service_fails(httpsserver):
bucketfs_service_response = "Client should not be able to retrieve this!"
httpsserver.serve_content(bucketfs_service_response, 200)
CREDENTAILS = {"default": {"username": "w", "password": "write"}}
service = Service(httpsserver.url, CREDENTAILS)
CREDENTIALS = {"default": {"username": "w", "password": "write"}}
service = Service(httpsserver.url, CREDENTIALS)

with pytest.raises(requests.exceptions.SSLError) as execinfo:
_ = [bucket for bucket in service]
Expand Down

0 comments on commit 62f44c0

Please sign in to comment.