Skip to content

Commit b28bc3a

Browse files
committed
test at which command azure pipelines failing
1 parent add3e23 commit b28bc3a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/series/test_analytics.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,9 @@ def test_ptp(self):
857857
N = 1000
858858
arr = np.random.randn(N)
859859
ser = Series(arr)
860-
assert np.ptp(ser) == np.ptp(arr)
860+
ptp_np = np.ptp(arr)
861+
ptp_pd = np.ptp(ser)
862+
assert ptp_pd == ptp_np
861863

862864
def test_repeat(self):
863865
s = Series(np.random.randn(3), index=["a", "b", "c"])

0 commit comments

Comments
 (0)