Restore files modified in non-working fix.

This commit is contained in:
Diego Argueta 2018-12-18 14:53:52 -08:00
commit 2cc8784e5c
4 changed files with 8 additions and 8 deletions

View file

@ -73,7 +73,7 @@ def test_s3_server_post_to_bucket():
test_client.post('/foobar2', "https://localhost:5000/", data={
'key': 'the-key',
'file': b'nothing'
'file': 'nothing'
})
res = test_client.get('/foobar2/the-key', 'http://localhost:5000/')
@ -89,7 +89,7 @@ def test_s3_server_put_ipv6():
test_client.post('/foobar2', "https://[::]:5000/", data={
'key': 'the-key',
'file': b'nothing'
'file': 'nothing'
})
res = test_client.get('/foobar2/the-key', 'http://[::]:5000/')
@ -105,7 +105,7 @@ def test_s3_server_put_ipv4():
test_client.post('/foobar2', "https://127.0.0.1:5000/", data={
'key': 'the-key',
'file': b'nothing'
'file': 'nothing'
})
res = test_client.get('/foobar2/the-key', 'http://127.0.0.1:5000/')