Skip to content

Commit 40c7e50

Browse files
committed
fix failed tests
1 parent e84fc04 commit 40c7e50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_files/tests/test_create_venv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def create_gitignore(_p):
122122
def test_install_packages(install_type):
123123
importlib.reload(create_venv)
124124
create_venv.is_installed = lambda _x: True
125-
create_venv.file_exists = lambda x: install_type in x
125+
create_venv.file_exists = lambda x: install_type in str(x)
126126

127127
pip_upgraded = False
128128
installing = None

0 commit comments

Comments
 (0)