Commit 1ca390dc authored by kinuthia's avatar kinuthia
Browse files

fix minor syntax error in pytest

parent ad2b0192
Loading
Loading
Loading
Loading
Loading
+15 −11
Original line number Diff line number Diff line
@@ -423,20 +423,24 @@ DECODER_CONST_BR_NO_BINAURAL_SCENEBASED = collapse_into_list_of_pairs(
        BITSTREAM_PROCESSING,
    )
)
DECODER_CONST_BR_NO_BINAURAL_COMBINED_PARAMS = collapse_into_list_of_pairs(
DECODER_CONST_BR_NO_BINAURAL_COMBINED_PARAMS = (
    collapse_into_list_of_pairs(
        product(
            OSBA_PARAMS,
            OUTPUT_FORMATS_NON_BINAURAL[:-1],  # no EXT here
            SAMPLING_RATES_ALL,
            BITSTREAM_PROCESSING,
        )
    + product(
    )
    + collapse_into_list_of_pairs(
        product(
            OMASA_PARAMS,
            OUTPUT_FORMATS_NON_BINAURAL,
            SAMPLING_RATES_ALL,
            BITSTREAM_PROCESSING,
        )
    )
)

# parameters for const bitrate testcases with binaural output