Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
simplylizz committed Jul 19, 2019
1 parent 1d8761a commit 87bc45c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyspark/sql/tests/test_types.py
Expand Up @@ -830,7 +830,8 @@ def __init__(self, **kwargs):
(2**31 - 1, IntegerType()),

# Long
(2**64, LongType()),
(-(2**63), LongType()),
(2**63 - 1, LongType()),

# Float & Double
(1.0, FloatType()),
Expand Down

0 comments on commit 87bc45c

Please sign in to comment.