We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4311af commit a79256fCopy full SHA for a79256f
unit_tests/sources/declarative/decoders/test_composite_decoder.py
@@ -226,9 +226,8 @@ def test_composite_raw_decoder_csv_parser_without_mocked_response():
226
httpd = HTTPServer(("localhost", 8080), TestServer)
227
thread = Thread(target=httpd.serve_forever, args=())
228
thread.start()
229
- thread.start()
230
try:
231
- response = requests.get(f"http://localhost:{port}", stream=True)
+ response = requests.get(f"http://localhost:8080", stream=True)
232
result = list(CompositeRawDecoder(parser=CsvParser()).decode(response))
233
234
assert len(result) == 1
0 commit comments