We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b7fd0 commit f6d42f4Copy full SHA for f6d42f4
python/pyspark/tests.py
@@ -646,7 +646,7 @@ def test_cartesian_chaining(self):
646
647
def test_zip_chaining(self):
648
# Tests for SPARK-21985
649
- rdd = self.sc.parallelize('abc',2)
+ rdd = self.sc.parallelize('abc', 2)
650
self.assertSetEqual(
651
set(rdd.zip(rdd).zip(rdd).collect()),
652
set([((x, x), x) for x in 'abc'])
0 commit comments