diff --git a/core/tests/test_transform_util.py b/core/tests/test_transform_util.py index 312afb9..dea7b9a 100644 --- a/core/tests/test_transform_util.py +++ b/core/tests/test_transform_util.py @@ -19,6 +19,7 @@ class TestTransformUtil(): assert_equal(TransformUtil.remove_punctuation('!#?'), '') def test_map_remove_punctuation(self): + # Map applies a function to a collection output = map(TransformUtil.remove_punctuation, self.states) assert_equal('!#?' not in output, True)