Skip to content

Commit

Permalink
Fix tests with new template limits (Related to #1814)
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Oct 22, 2020
1 parent cb77440 commit 4df030e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tests/test_template.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
import unittest

from troposphere import Template, Parameter, Output
from troposphere import MAX_MAPPINGS, MAX_OUTPUTS
from troposphere import MAX_PARAMETERS, MAX_RESOURCES
from troposphere.s3 import Bucket

# Template Limits
MAX_MAPPINGS = 100
MAX_OUTPUTS = 60
MAX_PARAMETERS = 60
MAX_RESOURCES = 200


class TestInitArguments(unittest.TestCase):
def test_description_default(self):
Expand Down

0 comments on commit 4df030e

Please sign in to comment.