Skip to content

Commit

Permalink
Use valid scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 14, 2024
1 parent adca6f6 commit b66e7de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pyarrow/tests/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1450,8 +1450,8 @@ def test_azurefs_options(pickle_module):
fs3 = AzureFileSystem(account_name='fake-account', account_key='fakeaccount',
blob_storage_authority='fake-blob-authority',
dfs_storage_authority='fake-dfs-authority',
blob_storage_scheme='fake-blob-scheme',
dfs_storage_scheme='fake-dfs-scheme')
blob_storage_scheme='https',
dfs_storage_scheme='https')
assert isinstance(fs3, AzureFileSystem)
assert pickle_module.loads(pickle_module.dumps(fs3)) == fs3
assert fs3 != fs2
Expand Down

0 comments on commit b66e7de

Please sign in to comment.