Skip to content

Commit

Permalink
#114 Added the service_name to buckets; made MountedBucket R/W
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Apr 23, 2024
1 parent 2c5f418 commit b6b4fc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/test_bucket_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _collect_all_names(path: PathLike) -> set[str]:

def test_write_read_back_onprem(test_config, children_poem):

base_path = build_path(system=StorageBackend.onprem, url=test_config.url, verify=False,
base_path = build_path(backend=StorageBackend.onprem, url=test_config.url, verify=False,
username=test_config.username, password=test_config.password)
file_name = 'my_poems/little_star.txt'
poem_path = base_path / file_name
Expand All @@ -57,7 +57,7 @@ def test_write_read_back_onprem(test_config, children_poem):

def test_write_list_files_onprem(test_config, children_poem, classic_poem):

base_path = build_path(system=StorageBackend.onprem, url=test_config.url, path='my_poems',
base_path = build_path(backend=StorageBackend.onprem, url=test_config.url, path='my_poems',
verify=False, username=test_config.username, password=test_config.password)
poem_path1 = base_path / 'children/little_star.txt'
poem_path2 = base_path / 'classic/highlands.txt'
Expand All @@ -81,7 +81,7 @@ def test_write_list_files_onprem(test_config, children_poem, classic_poem):

def test_write_delete_onprem(test_config, children_poem, classic_poem):

base_path = build_path(system=StorageBackend.onprem, url=test_config.url, verify=False,
base_path = build_path(backend=StorageBackend.onprem, url=test_config.url, verify=False,
username=test_config.username, password=test_config.password)
poems_root = base_path / 'my_other_poems'
poem_path1 = poems_root / 'children/little_star.txt'
Expand Down

0 comments on commit b6b4fc8

Please sign in to comment.