@@ -622,7 +622,7 @@ def test_client_create_blob(httpserver: HTTPServer):
622
622
client = Client (httpserver .url_for ('/' ))
623
623
624
624
with tempfile .NamedTemporaryFile () as blob :
625
- response = client ._create_blob (blob .name )
625
+ response = client .create_blob (blob .name )
626
626
assert response == 'sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
627
627
628
628
@@ -632,7 +632,7 @@ def test_client_create_blob_exists(httpserver: HTTPServer):
632
632
client = Client (httpserver .url_for ('/' ))
633
633
634
634
with tempfile .NamedTemporaryFile () as blob :
635
- response = client ._create_blob (blob .name )
635
+ response = client .create_blob (blob .name )
636
636
assert response == 'sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
637
637
638
638
@@ -1098,7 +1098,7 @@ async def test_async_client_create_blob(httpserver: HTTPServer):
1098
1098
client = AsyncClient (httpserver .url_for ('/' ))
1099
1099
1100
1100
with tempfile .NamedTemporaryFile () as blob :
1101
- response = await client ._create_blob (blob .name )
1101
+ response = await client .create_blob (blob .name )
1102
1102
assert response == 'sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
1103
1103
1104
1104
@@ -1109,7 +1109,7 @@ async def test_async_client_create_blob_exists(httpserver: HTTPServer):
1109
1109
client = AsyncClient (httpserver .url_for ('/' ))
1110
1110
1111
1111
with tempfile .NamedTemporaryFile () as blob :
1112
- response = await client ._create_blob (blob .name )
1112
+ response = await client .create_blob (blob .name )
1113
1113
assert response == 'sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
1114
1114
1115
1115
0 commit comments