diff --git a/test/unit/module/formatters/test_formatters.py b/test/unit/module/formatters/test_formatters.py index ca755e0f13..b50f586ccb 100644 --- a/test/unit/module/formatters/test_formatters.py +++ b/test/unit/module/formatters/test_formatters.py @@ -163,7 +163,7 @@ def test_sarif_formatter(self): sarif = json.loads(formatter.print_matches(results, rules)) # Fetch the SARIF schema - schema = json.loads(cfnlint.helpers.get_url_content(sarif['$schema'], True)) + schema = json.loads(cfnlint.helpers.get_url_content(sarif['$schema'], False)) jsonschema.validate(sarif, schema) sarif_results = sarif['runs'][0]['results']