From cc1a73daf24f579b2314b1d52099cae27995520e Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 15 Jun 2015 17:07:20 +0100 Subject: [PATCH] fix style issues in pipe test --- python/pyspark/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyspark/tests.py b/python/pyspark/tests.py index e38872a9f9b4e..0046e53a5fc3e 100644 --- a/python/pyspark/tests.py +++ b/python/pyspark/tests.py @@ -875,7 +875,7 @@ def test_sortByKey_uses_all_partitions_not_only_first_and_last(self): self.assertGreater(size, 0) def test_pipe_functions(self): - data = ['1','2','3'] + data = ['1', '2', '3'] rdd = self.sc.parallelize(data) self.assertRaises(Exception, rdd.pipe('cc').collect()) result = rdd.pipe('cat').collect().sort()