diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-28 12:55:04 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-28 12:55:04 +0200 |
commit | ad7a83e5f405e4db3e9c6c3279150812314c5671 (patch) | |
tree | 4ed7a1c23a867cc215f9e171710b45a7a527e900 /test/conftest.py | |
parent | Makefile: split tests into different recipes (diff) | |
download | cimple-ad7a83e5f405e4db3e9c6c3279150812314c5671.tar.gz cimple-ad7a83e5f405e4db3e9c6c3279150812314c5671.zip |
test/lib: refactoring
Diffstat (limited to '')
-rw-r--r-- | test/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/conftest.py b/test/conftest.py index 80ffef5..65d8a7e 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -9,7 +9,7 @@ import random from pytest import fixture -from .lib.process import CmdLine, CmdLineBuilder, Runner +from .lib.process import CmdLine, CmdLineRunner, Runner class Param: @@ -158,5 +158,5 @@ def server_and_workers(server, workers): @fixture def client(process_runner, paths, server_port): args = ['--port', server_port] - cmd_line = CmdLineBuilder(process_runner, paths.client_binary, *args) + cmd_line = CmdLineRunner(process_runner, paths.client_binary, *args) return cmd_line |