Skip to content

Commit 4e838ab

Browse files
committed
Fix tests
1 parent 0579b51 commit 4e838ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/test_installation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ def test_workflows_deployment_creates_jobs_with_remove_after_tag():
353353

354354
def test_custom_folder_installation(ws, new_installation, make_directory):
355355
product_info = ProductInfo.for_testing(WorkspaceConfig)
356-
custom_folder = make_directory().as_fuse()
356+
custom_folder = make_directory().as_fuse().as_posix()
357357

358358
custom_installation = Installation(ws, product_info.product_name(), install_folder=custom_folder)
359359
installation = new_installation(
@@ -367,7 +367,7 @@ def test_custom_folder_installation(ws, new_installation, make_directory):
367367

368368
def test_custom_folder_installation_with_environment_variable(ws, new_installation, make_directory):
369369
product_info = ProductInfo.for_testing(WorkspaceConfig)
370-
custom_folder = make_directory().as_fuse()
370+
custom_folder = make_directory().as_fuse().as_posix()
371371

372372
custom_installation = Installation(ws, product_info.product_name(), install_folder=custom_folder)
373373
installation = new_installation(

0 commit comments

Comments
 (0)