From 88e0fa320aeda6971ef07eca7ac9496ef78525b5 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Wed, 8 Nov 2023 18:23:46 -0800 Subject: [PATCH] Update tests for spec changes --- test/unit/rules/resources/properties/test_required.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/rules/resources/properties/test_required.py b/test/unit/rules/resources/properties/test_required.py index 295a2e4835..757a21296d 100644 --- a/test/unit/rules/resources/properties/test_required.py +++ b/test/unit/rules/resources/properties/test_required.py @@ -29,7 +29,7 @@ def test_file_positive(self): def test_file_negative(self): """Test failure""" self.helper_file_negative( - "test/fixtures/templates/bad/properties_required.yaml", 12 + "test/fixtures/templates/bad/properties_required.yaml", 11 ) def test_file_negative_generic(self): @@ -56,5 +56,5 @@ def test_file_negative(self): """Test failure""" # Additional Custom::SpecifiedCustomResource failure detected with custom spec self.helper_file_negative( - "test/fixtures/templates/bad/properties_required.yaml", 13 + "test/fixtures/templates/bad/properties_required.yaml", 12 )