diff --git a/test/test_catalog.py b/test/test_catalog.py index 6915101..ef88345 100644 --- a/test/test_catalog.py +++ b/test/test_catalog.py @@ -26,6 +26,7 @@ class TestCatalogBuilder(unittest.TestCase): step=integers_in_range(-10000, 10000), value=int) def test_regular_constant_mapping(self, start, num, step, value): + assume(step != 0) mapping = {key: value for key in range(start, start + num*step, step)} builder = CatalogBuilder(mapping) catalog = builder.create()