Skip to content

Commit 4ed9869

Browse files
committed
be a little less strict with the assertion
1 parent 8f17727 commit 4ed9869

File tree

1 file changed

+2
-2
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_venv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ def test_create_and_use_basic_venv(self):
6363
def test_create_and_use_venv_with_pip(self):
6464
subprocess.check_output([sys.executable, "-m", "venv", self.env_dir2])
6565
run = subprocess.getoutput("%s/bin/python -m pip list" % self.env_dir2)
66-
assert "\npip" in run, run
67-
assert "\nsetuptools" in run, run
66+
assert "pip" in run, run
67+
assert "setuptools" in run, run

0 commit comments

Comments
 (0)