diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-28 19:22:57 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-28 19:22:57 +0200 |
commit | 7f331ba9492e178de999f010b3420fad8d167495 (patch) | |
tree | 725edbcb05a832be47f9ff965eede5d4bc600b88 /test/lib/test_repo | |
parent | test: add test timeouts, prettier output (diff) | |
download | cimple-7f331ba9492e178de999f010b3420fad8d167495.tar.gz cimple-7f331ba9492e178de999f010b3420fad8d167495.zip |
test/lib: refactoring
Diffstat (limited to '')
-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): |