From 4e99f5053adf1ab16791d1a400266cc80c082bf3 Mon Sep 17 00:00:00 2001 From: Meghann Cunningham Date: Tue, 31 Jan 2023 15:45:07 +0000 Subject: [PATCH] fixed var that was set to False for testing purposes --- salt/modules/saltcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/modules/saltcheck.py b/salt/modules/saltcheck.py index 9355fdfa76b..2a292cc4c23 100644 --- a/salt/modules/saltcheck.py +++ b/salt/modules/saltcheck.py @@ -531,7 +531,7 @@ def run_state_tests( if junit and HAS_JUNIT: return _generate_junit_out_list(results) else: - return _generate_out_list(results, only_fails=False) + return _generate_out_list(results, only_fails=only_fails) def parallel_scheck(data):