From 1f8cf229636afa4289bf43645b991d3fd8ba03ba Mon Sep 17 00:00:00 2001 From: Mark van Holsteijn Date: Mon, 4 Jul 2022 14:51:44 +0200 Subject: [PATCH] fixed tests --- tests/test_convert_zonefile_to_cloudformation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_convert_zonefile_to_cloudformation.py b/tests/test_convert_zonefile_to_cloudformation.py index cf2cc4d..0a700d8 100644 --- a/tests/test_convert_zonefile_to_cloudformation.py +++ b/tests/test_convert_zonefile_to_cloudformation.py @@ -56,7 +56,7 @@ def setUp(self) -> None: self.zone = easyzone.zone_from_file("asample.org", filename.name) def test_something(self): - template = convert_to_cloudformation(self.zone) + template = convert_to_cloudformation(self.zone, 300) self.assertEqual("2010-09-09", template.get("AWSTemplateFormatVersion")) resources = template.get("Resources", {}) self.assertTrue(resources, "Resources section exists")