Skip to content

Commit cc1a73d

Browse files
fix style issues in pipe test
1 parent 8db4073 commit cc1a73d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ def test_sortByKey_uses_all_partitions_not_only_first_and_last(self):
875875
self.assertGreater(size, 0)
876876

877877
def test_pipe_functions(self):
878-
data = ['1','2','3']
878+
data = ['1', '2', '3']
879879
rdd = self.sc.parallelize(data)
880880
self.assertRaises(Exception, rdd.pipe('cc').collect())
881881
result = rdd.pipe('cat').collect().sort()

0 commit comments

Comments
 (0)