Skip to content

Commit 3a7487d

Browse files
authored
Clean up comments in test_isin_int64_vs_uint64_mismatch
Removed comments from the test case for isin method.
1 parent 13dcc7b commit 3a7487d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/series/methods/test_isin.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,13 +270,9 @@ def test_isin_filtering_on_iterable(data, isin):
270270

271271

272272
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)
276273
ser = Series([1378774140726870442], dtype=np.int64)
277274
vals = [np.uint64(1378774140726870528)]
278275

279276
res = ser.isin(vals)
280-
# different values -> should be False
281277
expected = Series([False])
282278
tm.assert_series_equal(res, expected)

0 commit comments

Comments
 (0)