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 13dcc7b commit 3a7487dCopy full SHA for 3a7487d
pandas/tests/series/methods/test_isin.py
@@ -270,13 +270,9 @@ def test_isin_filtering_on_iterable(data, isin):
270
271
272
def test_isin_int64_vs_uint64_mismatch():
273
- # Regression test for mixing signed int64 Series with uint64 values
274
- # Ensure we do not implicitly upcast to float64 and return incorrect True
275
- # related to GH# (user report)
276
ser = Series([1378774140726870442], dtype=np.int64)
277
vals = [np.uint64(1378774140726870528)]
278
279
res = ser.isin(vals)
280
- # different values -> should be False
281
expected = Series([False])
282
tm.assert_series_equal(res, expected)
0 commit comments