You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2016/07/12 16:50:32 UTC

incubator-beam git commit: Fix lint error.

Repository: incubator-beam
Updated Branches:
  refs/heads/python-sdk fb9da8e32 -> cb2afa4e8


Fix lint error.


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/cb2afa4e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/cb2afa4e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/cb2afa4e

Branch: refs/heads/python-sdk
Commit: cb2afa4e8bbc28303da7d858bf4ba6d16f514ab3
Parents: fb9da8e
Author: Robert Bradshaw <ro...@google.com>
Authored: Tue Jul 12 09:50:15 2016 -0700
Committer: Robert Bradshaw <ro...@google.com>
Committed: Tue Jul 12 09:50:15 2016 -0700

----------------------------------------------------------------------
 sdks/python/apache_beam/internal/pickler_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/cb2afa4e/sdks/python/apache_beam/internal/pickler_test.py
----------------------------------------------------------------------
diff --git a/sdks/python/apache_beam/internal/pickler_test.py b/sdks/python/apache_beam/internal/pickler_test.py
index bd59c73..0952a26 100644
--- a/sdks/python/apache_beam/internal/pickler_test.py
+++ b/sdks/python/apache_beam/internal/pickler_test.py
@@ -41,7 +41,7 @@ class PicklerTest(unittest.TestCase):
         loads(dumps(module_test.get_lambda_with_globals()))('abc def'))
 
   def test_lambda_with_main_globals(self):
-    self.assertEquals(unittest, loads(dumps(lambda : unittest))())
+    self.assertEquals(unittest, loads(dumps(lambda: unittest))())
 
   def test_lambda_with_closure(self):
     """Tests that the closure of a function is preserved."""