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 36ae44d commit 04916caCopy full SHA for 04916ca
python/pyarrow/tests/test_fs.py
@@ -1455,8 +1455,9 @@ def test_s3_proxy_options(monkeypatch, pickle_module):
1455
S3FileSystem(proxy_options='httpsB://localhost:9000')
1456
# Invalid proxy_options dict (invalid scheme httpA)
1457
with pytest.raises(pa.ArrowInvalid):
1458
- S3FileSystem(proxy_options={ # type: ignore[typeddict-item]
1459
- 'scheme': 'httpA', 'host': 'localhost', 'port': 8999})
+ S3FileSystem(proxy_options={
+ 'scheme': 'httpA', # type: ignore[typeddict-item]
1460
+ 'host': 'localhost', 'port': 8999})
1461
1462
1463
@pytest.mark.s3
0 commit comments