23 lines
1002 B
Diff
23 lines
1002 B
Diff
|
From 0b6cece3acda1ae6e4f582d8276851b02aeac1ea Mon Sep 17 00:00:00 2001
|
||
|
From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
|
||
|
Date: Mon, 25 Nov 2024 11:35:37 -0800
|
||
|
Subject: [PATCH] TST: Avoid hashing np.timedelta64 without unit (#60416)
|
||
|
|
||
|
---
|
||
|
pandas/tests/test_algos.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
Index: pandas-2.2.3/pandas/tests/test_algos.py
|
||
|
===================================================================
|
||
|
--- pandas-2.2.3.orig/pandas/tests/test_algos.py
|
||
|
+++ pandas-2.2.3/pandas/tests/test_algos.py
|
||
|
@@ -1280,7 +1280,7 @@ class TestValueCounts:
|
||
|
result_dt = algos.value_counts(dt)
|
||
|
tm.assert_series_equal(result_dt, exp_dt)
|
||
|
|
||
|
- exp_td = Series({np.timedelta64(10000): 1}, name="count")
|
||
|
+ exp_td = Series([1], index=[np.timedelta64(10000)], name="count")
|
||
|
with tm.assert_produces_warning(FutureWarning, match=msg):
|
||
|
result_td = algos.value_counts(td)
|
||
|
tm.assert_series_equal(result_td, exp_td)
|