Skip to content

Commit 598a047

Browse files
committed
test
1 parent 18ebb02 commit 598a047

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

python/pyspark/pandas/tests/data_type_ops/test_num_ops.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ def test_comparison_dtype_compatibility(self):
135135
)
136136
psdf = ps.from_pandas(pdf)
137137
self.assert_eq(pdf["int"] == pdf["bool"], psdf["int"] == psdf["bool"])
138+
self.assert_eq(pdf["bool"] == pdf["int"], psdf["bool"] == psdf["int"])
138139
self.assert_eq(pdf["int"] == pdf["float"], psdf["int"] == psdf["float"])
139140
if is_ansi_mode_test: # TODO: match non-ansi behavior with pandas
140141
self.assert_eq(pdf["int"] == pdf["str"], psdf["int"] == psdf["str"])

0 commit comments

Comments
 (0)