Skip to content

Commit 7eb94ff

Browse files
committed
fixup
1 parent e67fc6d commit 7eb94ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/reductions/test_stat_reductions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def test_kurt_corner(self, using_python_scalars):
274274
else:
275275
assert 0 == s.kurt()
276276
if using_python_scalars:
277-
assert isinstance(s.kurt(), float)
277+
assert type(s.kurt()) == float
278278
else:
279279
assert isinstance(s.kurt(), np.float64) # GH53482
280280
assert (df.kurt() == 0).all()

0 commit comments

Comments
 (0)