Skip to content

Commit

Permalink
#114 Fixed the integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Apr 23, 2024
1 parent a88d261 commit 7085f21
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=SystemType.onprem, url=test_config.url, verify_ca=False,
base_path = build_path(system=SystemType.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 @@ -58,7 +58,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=SystemType.onprem, url=test_config.url, path='my_poems',
verify_ca=False, username=test_config.username, password=test_config.password)
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=SystemType.onprem, url=test_config.url, verify_ca=False,
base_path = build_path(system=SystemType.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 7085f21

Please sign in to comment.