We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ebb02 commit 598a047Copy full SHA for 598a047
python/pyspark/pandas/tests/data_type_ops/test_num_ops.py
@@ -135,6 +135,7 @@ def test_comparison_dtype_compatibility(self):
135
)
136
psdf = ps.from_pandas(pdf)
137
self.assert_eq(pdf["int"] == pdf["bool"], psdf["int"] == psdf["bool"])
138
+ self.assert_eq(pdf["bool"] == pdf["int"], psdf["bool"] == psdf["int"])
139
self.assert_eq(pdf["int"] == pdf["float"], psdf["int"] == psdf["float"])
140
if is_ansi_mode_test: # TODO: match non-ansi behavior with pandas
141
self.assert_eq(pdf["int"] == pdf["str"], psdf["int"] == psdf["str"])
0 commit comments