diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-12 00:41:15 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-12 00:41:15 +0100 |
commit | 76e043e95579fd06a405d5fc73dd5983cca90f88 (patch) | |
tree | a62d9c28c44f8816544b631efc1fc7e302ffdf05 /test/py/test_repo.py | |
parent | ci.sh: fix docker-compose argument order (diff) | |
download | cimple-76e043e95579fd06a405d5fc73dd5983cca90f88.tar.gz cimple-76e043e95579fd06a405d5fc73dd5983cca90f88.zip |
refactoring
Diffstat (limited to '')
-rw-r--r-- | test/py/test_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/test_repo.py b/test/py/test_repo.py index ec04e6d..e500b9f 100644 --- a/test/py/test_repo.py +++ b/test/py/test_repo.py @@ -40,7 +40,7 @@ def client_runner_process(log_queue, client, runs_per_process, repo): with configure_logging_in_child(log_queue): logging.info('Executing %s clients', runs_per_process) for i in range(runs_per_process): - client.run('run', repo.path, 'HEAD') + client.run('queue-run', repo.path, 'HEAD') def _test_repo_internal(env, repo, numof_processes, runs_per_process): |