Commit 2803b946 authored by norvell's avatar norvell
Browse files

Correct pass-through filtering

parent 80d4a6dc
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ def test_param_file_tests(

    # If compare_to_input is set, only run pass-through test cases
    if compare_to_input:
        passthrough = [(a, b) for (a, b) in PASSTHROUGH_CONF if re.search(a, enc_opts) and b in dec_opts.split()[0]]
        passthrough = [(a, b) for (a, b) in PASSTHROUGH_CONF if re.search(a, enc_opts) and b in dec_opts.split()]
        if len(passthrough) != 1:
            pytest.skip()