From f28ea20d46431a914b2ac179eafe8e65cbbfd6c8 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Fri, 10 Jan 2025 18:29:04 +0200 Subject: [PATCH] Fix unit test --- test/unit/app/tools/test_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/app/tools/test_actions.py b/test/unit/app/tools/test_actions.py index 36056fbc61d9..a6126cfb8b32 100644 --- a/test/unit/app/tools/test_actions.py +++ b/test/unit/app/tools/test_actions.py @@ -231,7 +231,7 @@ def __assert_output_format_is(expected, output, input_extensions=None, param_con ) c1.elements = [dce1, dce2] - input_collections["hdcai"] = [(hc1, False)] + input_collections["hdcai"] = hc1 actual_format = determine_output_format(output, param_context, inputs, input_collections, last_ext) assert actual_format == expected, f"Actual format {actual_format}, does not match expected {expected}"