@@ -40,7 +40,7 @@ async def test_decompress_plain_no_header(http_request):
40
40
client = AsyncPipelineClient (account_url )
41
41
async with client :
42
42
request = http_request ("GET" , url )
43
- pipeline_response = await client ._pipeline .run (request , stream = True )
43
+ pipeline_response = await client .pipeline .run (request , stream = True )
44
44
response = pipeline_response .http_response
45
45
data = response .iter_bytes ()
46
46
content = b""
@@ -60,7 +60,7 @@ async def test_compress_plain_no_header(http_request):
60
60
client = AsyncPipelineClient (account_url )
61
61
async with client :
62
62
request = http_request ("GET" , url )
63
- pipeline_response = await client ._pipeline .run (request , stream = True )
63
+ pipeline_response = await client .pipeline .run (request , stream = True )
64
64
response = pipeline_response .http_response
65
65
data = response .iter_raw ()
66
66
content = b""
@@ -80,7 +80,7 @@ async def test_decompress_compressed_no_header(http_request):
80
80
client = AsyncPipelineClient (account_url )
81
81
async with client :
82
82
request = http_request ("GET" , url )
83
- pipeline_response = await client ._pipeline .run (request , stream = True )
83
+ pipeline_response = await client .pipeline .run (request , stream = True )
84
84
response = pipeline_response .http_response
85
85
data = response .iter_bytes ()
86
86
content = b""
@@ -103,7 +103,7 @@ async def test_compress_compressed_no_header(http_request):
103
103
client = AsyncPipelineClient (account_url )
104
104
async with client :
105
105
request = http_request ("GET" , url )
106
- pipeline_response = await client ._pipeline .run (request , stream = True )
106
+ pipeline_response = await client .pipeline .run (request , stream = True )
107
107
response = pipeline_response .http_response
108
108
data = response .iter_raw ()
109
109
content = b""
@@ -129,7 +129,7 @@ async def test_decompress_plain_header(http_request):
129
129
client = AsyncPipelineClient (account_url )
130
130
async with client :
131
131
request = http_request ("GET" , url )
132
- pipeline_response = await client ._pipeline .run (request , stream = True )
132
+ pipeline_response = await client .pipeline .run (request , stream = True )
133
133
response = pipeline_response .http_response
134
134
data = response .iter_bytes ()
135
135
try :
@@ -151,7 +151,7 @@ async def test_compress_plain_header(http_request):
151
151
client = AsyncPipelineClient (account_url )
152
152
async with client :
153
153
request = http_request ("GET" , url )
154
- pipeline_response = await client ._pipeline .run (request , stream = True )
154
+ pipeline_response = await client .pipeline .run (request , stream = True )
155
155
response = pipeline_response .http_response
156
156
data = response .iter_raw ()
157
157
content = b""
@@ -171,7 +171,7 @@ async def test_decompress_compressed_header(http_request):
171
171
client = AsyncPipelineClient (account_url )
172
172
async with client :
173
173
request = http_request ("GET" , url )
174
- pipeline_response = await client ._pipeline .run (request , stream = True )
174
+ pipeline_response = await client .pipeline .run (request , stream = True )
175
175
response = pipeline_response .http_response
176
176
data = response .iter_bytes ()
177
177
content = b""
@@ -192,7 +192,7 @@ async def test_compress_compressed_header(http_request):
192
192
client = AsyncPipelineClient (account_url )
193
193
async with client :
194
194
request = http_request ("GET" , url )
195
- pipeline_response = await client ._pipeline .run (request , stream = True )
195
+ pipeline_response = await client .pipeline .run (request , stream = True )
196
196
response = pipeline_response .http_response
197
197
data = response .iter_raw ()
198
198
content = b""
0 commit comments