Skip to content

Commit

Permalink
fix: Windows default validate template integration test (#2924)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrandis authored Jun 2, 2021
1 parent e5fc352 commit 72c0d5a
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 72c0d5a

Please sign in to comment.