Skip to content

Commit 3e1143f

Browse files
author
Alexander Vasin
committed
Fix tests
1 parent cc7b4e5 commit 3e1143f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async def s3_client(event_loop, s3_url: URL):
2222

2323
@pytest.fixture
2424
async def s3_url() -> URL:
25-
return URL(os.getenv("S3_URL", "http://user:hackme@localhost:8000/"))
25+
return URL(os.getenv("S3_URL", "http://user:hackme@localhost:8000/test"))
2626

2727

2828
@pytest.fixture

tests/test_simple.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,6 @@ def test_presign_url(s3_client):
198198
'X-Amz-Expires': '3600',
199199
'X-Amz-SignedHeaders': 'host',
200200
'X-Amz-Signature': (
201-
'3a1bbc47ae3e9273b61f14212fd82baffbcef8bdae02db0e375f0580f1de0523'
201+
'8247a53fbbabbc28355eb1b7129bc1e37398e17c116f5b32341d05b2705c37a5'
202202
)
203203
}

0 commit comments

Comments
 (0)