Skip to content

Commit a449088

Browse files
timfelansalond
authored andcommitted
be a little less strict with the assertion
(cherry picked from commit 4ed9869)
1 parent e7a2655 commit a449088

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)