Skip to content

Commit e52fe69

Browse files
committed
Reduce column size of test_interp_string_axis
1 parent e4ca405 commit e52fe69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/methods/test_interpolate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ def test_interp_time_inplace_axis(self):
366366
@pytest.mark.parametrize("axis_name, axis_number", [("index", 0), ("columns", 1)])
367367
def test_interp_string_axis(self, axis_name, axis_number):
368368
# https://github.com/pandas-dev/pandas/issues/25190
369-
x = np.linspace(0, 100, 1000)
369+
x = np.linspace(0, 100, 3)
370370
y = np.sin(x)
371371
df = DataFrame(
372372
data=np.tile(y, (10, 1)), index=np.arange(10), columns=x

0 commit comments

Comments
 (0)