Skip to content

Commit

Permalink
Fixed error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Ganelin committed Jun 18, 2015
1 parent 41ab686 commit 8109e00
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 @@ -528,7 +528,7 @@ def test_struct_type(self):
struct1 = (StructType().add(StructField("f1", StringType(), True))
.add(StructField("f2", StringType(), True, None)))
struct2 = StructType([StructField("f1", StringType(), True)])
self.assertEqual(struct1, struct2)
self.assertNotEqual(struct1, struct2)

# Catch exception raised during improper construction
try:
Expand Down

0 comments on commit 8109e00

Please sign in to comment.