Skip to content

Commit ecb0bbb

Browse files
committed
Add TODO note
1 parent f67da86 commit ecb0bbb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/frame/test_quantile.py

+1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ 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+
# TODO: Remove the following, as q1 is not different from q
162163
# test with and without interpolation keyword
163164
q1 = df.quantile(0.1)
164165
assert q1['A'] == np.percentile(df['A'], 10)

0 commit comments

Comments
 (0)