removed debug prints

This commit is contained in:
Matthias Bisping 2022-02-23 15:47:28 +01:00
parent e8b0ea92c7
commit 5b61c4c1cc

View File

@ -25,7 +25,6 @@ def bucket_name():
def test_getting_object_put_in_bucket_is_object(storage, bucket_name):
with tempfile.SpooledTemporaryFile() as f:
print(f.name)
storage.put(bucket_name, "testfile", f)
data_received = storage.get(bucket_name, "testfile")
assert f == data_received