Skip to content

Commit f080f8d

Browse files
author
云峤
committed
update pep8
1 parent 76f0c51 commit f080f8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/pyspark/sql/tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,9 @@ def test_rand_functions(self):
439439
assert row[1] >= -4.0 and row[1] <= 4.0, "got: %s" % row[1]
440440

441441
def test_between_function(self):
442-
df = self.sqlCtx.parallelize([Row(a=1, b=2, c=3), Row(a=2, b=1, c=3), Row(a=4, b=1, c=4)]).toDF()
442+
df = self.sqlCtx.parallelize([Row(a=1, b=2, c=3),
443+
Row(a=2, b=1, c=3),
444+
Row(a=4, b=1, c=4)]).toDF()
443445
self.assertEqual([False, True, True],
444446
df.select(df.a.between(df.b, df.c)).collect())
445447

0 commit comments

Comments
 (0)