aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-11-12 00:41:15 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-11-12 00:41:15 +0100
commit76e043e95579fd06a405d5fc73dd5983cca90f88 (patch)
treea62d9c28c44f8816544b631efc1fc7e302ffdf05 /test
parentci.sh: fix docker-compose argument order (diff)
downloadcimple-76e043e95579fd06a405d5fc73dd5983cca90f88.tar.gz
cimple-76e043e95579fd06a405d5fc73dd5983cca90f88.zip
refactoring
Diffstat (limited to 'test')
-rw-r--r--test/py/test_repo.py2
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):