From 2de3d867c47e0d5440ab4e45c4aef366817da0eb Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Tue, 27 Jan 2015 10:26:48 -0500 Subject: [PATCH] Added comment to describe what map does. --- core/tests/test_transform_util.py | 1 + 1 file changed, 1 insertion(+) 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)