diff --git a/tests/unit/result_handlers/test_text.py b/tests/unit/result_handlers/test_text.py index 19741aa68..cd11b1b0d 100644 --- a/tests/unit/result_handlers/test_text.py +++ b/tests/unit/result_handlers/test_text.py @@ -38,8 +38,9 @@ def test_import(module_under_test): def test_basic_result_handler(module_under_test): """Test basic handler executes """ + format = "json" result_df = DataFrame(SAMPLE_RESULT_DATA) result_handler = module_under_test.TextResultHandler() - handler_output = result_handler.execute(SAMPLE_CONFIG, result_df) + handler_output = result_handler.execute(SAMPLE_CONFIG, format, result_df) assert handler_output["count"].sum() == result_df["count"].sum()