Skip to content

Commit e24f882

Browse files
author
Victor Verbeke
authored
Merge pull request #54 from VictorVerbeke/master
Replace self.shell with Run from e3 in testsuite
2 parents 04cd5ae + 6a7d9a9 commit e24f882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

regtests/testsuite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def run(self):
3030
"""
3131
cmd = ["python", "test.py"]
3232
start_time = time.time()
33-
run = self.shell(cmd, catch_error=False)
33+
run = Run(cmd, catch_error=False)
3434
self.result.time = time.time() - start_time
3535

3636

0 commit comments

Comments
 (0)