diff options
Diffstat (limited to 'test/lib/test_repo.py')
-rw-r--r-- | test/lib/test_repo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/test_repo.py b/test/lib/test_repo.py index f12b374..820c73f 100644 --- a/test/lib/test_repo.py +++ b/test/lib/test_repo.py @@ -7,7 +7,7 @@ import logging import os import shutil -from .process import run +from .process import Process class Repo: @@ -21,7 +21,7 @@ class Repo: self.run('git', 'config', 'user.email', 'test@example.com') def run(self, *args, **kwargs): - run(*args, cwd=self.path, **kwargs) + Process.run(*args, cwd=self.path, **kwargs) class TestRepo(Repo): |