Commit 2207d2f7 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] missing conversion of Path to string for test_processing.py

parent 03e6586c
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -48,7 +48,8 @@ class Arguments:

@pytest.mark.parametrize("cfg", INPUT_CONFIG_FILES)
def test_generate_test_items(cfg):
    args = Arguments(INPUT_CONFIG_DIR.joinpath(cfg))
    cfg = str(INPUT_CONFIG_DIR.joinpath(cfg))
    args = Arguments(cfg)

    # read out input path
    config = TestConfig(cfg)