Skip to content

Commit 666f688

Browse files
committed
Remove duplicate code
1 parent f67da86 commit 666f688

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pandas/tests/frame/test_quantile.py

-5
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,6 @@ def test_quantile_interpolation_int(self, int_frame):
159159
q = df.quantile(0.1)
160160
assert q['A'] == np.percentile(df['A'], 10)
161161

162-
# test with and without interpolation keyword
163-
q1 = df.quantile(0.1)
164-
assert q1['A'] == np.percentile(df['A'], 10)
165-
tm.assert_series_equal(q, q1)
166-
167162
def test_quantile_multi(self):
168163
df = DataFrame([[1, 1, 1], [2, 2, 2], [3, 3, 3]],
169164
columns=['a', 'b', 'c'])

0 commit comments

Comments
 (0)