Skip to content

Commit 8ce4ef9

Browse files
author
y-p
committed
TST: remove slow test duplicating an even slower test to reduce test time
1 parent 3875acc commit 8ce4ef9

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

pandas/tests/test_frame.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4847,22 +4847,6 @@ def test_to_csv_float32_nanrep(self):
48474847
lines = f.readlines()
48484848
self.assert_(lines[1].split(',')[2] == '999')
48494849

4850-
@slow
4851-
def test_to_csv_boundry_conditions(self):
4852-
from pandas.util.testing import makeTimeDataFrame
4853-
4854-
with ensure_clean() as path:
4855-
4856-
df = makeTimeDataFrame(25000)
4857-
df.to_csv(path)
4858-
rs = pan.read_csv(path, index_col=0, parse_dates=True)
4859-
assert_frame_equal(rs, df)
4860-
4861-
df = makeTimeDataFrame(25001)
4862-
df.to_csv(path)
4863-
rs = pan.read_csv(path, index_col=0, parse_dates=True)
4864-
assert_frame_equal(rs, df)
4865-
48664850
def test_to_csv_withcommas(self):
48674851

48684852
# Commas inside fields should be correctly escaped when saving as CSV.

0 commit comments

Comments
 (0)