Skip to content

Commit 31de8d8

Browse files
committed
tests: fix quoting on Windows
1 parent fef87c2 commit 31de8d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_upgrade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_upgrade_preserves_versions(self, isolated_python_env):
2525
project_root = Path(__file__).parent.parent
2626

2727
# Install release version from PyPI
28-
run_in_venv(venv, "pip install 'solc-select>=1.0'", check=True)
28+
run_in_venv(venv, 'pip install "solc-select>=1.0"', check=True)
2929

3030
# Install additional versions
3131
run_in_venv(venv, "solc-select install 0.4.11 0.5.0 0.6.12 0.7.3 0.8.0 0.8.3", check=False)

0 commit comments

Comments
 (0)