Skip to content

Commit 2c49f2e

Browse files
committed
revert no-longer-needed
1 parent a1997e9 commit 2c49f2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reductions/test_stat_reductions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ def test_td64_mean(self, box):
7474
obj = box(tdarr)
7575

7676
result = obj.mean()
77-
np_tda = np.array(tdarr)
78-
assert result == np_tda.mean()
77+
expected = np.array(tdarr).mean()
78+
assert result == expected
7979

8080
tdarr[0] = pd.NaT
8181
assert obj.mean(skipna=False) is pd.NaT

0 commit comments

Comments
 (0)