Skip to content

Commit

Permalink
fix pathsep
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Mar 18, 2024
1 parent 9500220 commit 6e7e5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests/test_source_test_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ def test_failing_path_connector():
ab.get_source("source-test", config={"apiKey": "test"}, use_local_install=True)

def test_succeeding_path_connector():
new_path = f"{os.path.abspath('.venv-source-test/bin')}:{os.environ['PATH']}"
new_path = f"{os.path.abspath('.venv-source-test/bin')}{os.pathsep}{os.environ['PATH']}"

# Patch the PATH env var to include the test venv bin folder
with patch.dict(os.environ, {"PATH": new_path}):
Expand Down

0 comments on commit 6e7e5b7

Please sign in to comment.