Skip to content

Commit

Permalink
Fix python style in sql/test.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaka1992 committed May 5, 2015
1 parent c54d904 commit d2e7f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/sql/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def test_between_function(self):
Row(a=2, b=1, c=3),
Row(a=4, b=1, c=4)]).toDF()
self.assertEqual([False, True, True],
df.select(df.a.between(df.b, df.c)).collect())
df.select(df.a.between(df.b, df.c)).collect())

def test_save_and_load(self):
df = self.df
Expand Down

0 comments on commit d2e7f72

Please sign in to comment.