Skip to content

Commit f1e82ab

Browse files
committed
Revert "test at which command azure pipelines failing"
This reverts commit b28bc3a.
1 parent 0610de5 commit f1e82ab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/series/test_analytics.py

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

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

0 commit comments

Comments
 (0)