Skip to content

Commit

Permalink
fix: Windows default validate template integration test (aws#2924)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrandis authored and moelasmar committed Aug 4, 2021
1 parent d6b08d6 commit 2ed4fde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/validate/test_validate_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class TestValidate(TestCase):
@classmethod
def setUpClass(cls):
cls.patterns = {
TemplateFileTypes.JSON: re.compile(r"^/.+/template[.]json is a valid SAM Template$"),
TemplateFileTypes.YAML: re.compile(r"^/.+/template[.]yaml is a valid SAM Template$"),
TemplateFileTypes.JSON: re.compile(r"template\.json is a valid SAM Template$"),
TemplateFileTypes.YAML: re.compile(r"template\.yaml is a valid SAM Template$"),
}

@staticmethod
Expand Down

0 comments on commit 2ed4fde

Please sign in to comment.