diff --git a/test/conftest.py b/test/conftest.py index 35f09bfd3..1095fba03 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -18,13 +18,13 @@ def pytest_addoption(parser: pytest.Parser): "--coreblocks-test-name", action="store", type=str, - help="Name or regexp in flatten format pointing to test to run.", + help="Name or regexp in flatten format matching the tests to run.", ) group.addoption( "--coreblocks-test-count", action="store", type=int, - help="Number of tests to starts. If less than number of all selected tests, then starts only subset of them.", + help="Number of tests to start. If less than number of all selected tests, then starts only subset of them.", ) diff --git a/test/regression/conftest.py b/test/regression/conftest.py index ca2dc41e0..54648bbb5 100644 --- a/test/regression/conftest.py +++ b/test/regression/conftest.py @@ -34,7 +34,7 @@ def pytest_generate_tests(metafunc: pytest.Metafunc): all_tests = ( load_regression_tests() - ) # The list has to be always in the samo order (e.g. sorted) to allow for parallel testing + ) # The list has to be always in the same order (e.g. sorted) to allow for parallel testing traces = metafunc.config.getoption("coreblocks_traces") backend = metafunc.config.getoption("coreblocks_backend") verbose = bool(metafunc.config.getoption("verbose"))