Tests: fix failing tests after removal of vistir.misc.run

This commit is contained in:
Oz Tiram
2022-12-06 16:11:10 +01:00
parent 921804792e
commit c46ad88fb9
+1 -1
View File
@@ -498,7 +498,7 @@ class VirtualEnv:
cmd = [
python, "-m", "virtualenv", self.path.absolute().as_posix()
]
c = sp.run(cmd, shell=True)
c = sp.run(cmd)
assert c.returncode == 0
def activate(self):