Skip to content

Commit

Permalink
fix style issues in pipe test
Browse files Browse the repository at this point in the history
  • Loading branch information
megatron-me-uk committed Jun 15, 2015
1 parent 8db4073 commit cc1a73d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit cc1a73d

Please sign in to comment.