Skip to content

Commit 40a0674

Browse files
committed
Remove a test too similar to another one.
1 parent 07817fc commit 40a0674

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

pandas/tests/io/test_html.py

-6
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,6 @@ def test_skiprows_range(self):
201201

202202
assert_framelist_equal(df1, df2)
203203

204-
def test_skiprows_range_single_frame(self):
205-
df1 = self.read_html(self.spam_data, match=".*Water.*", skiprows=range(2))[0]
206-
df2 = self.read_html(self.spam_data, match="Unit", skiprows=range(2))[0]
207-
208-
tm.assert_frame_equal(df1, df2)
209-
210204
def test_skiprows_list(self):
211205
df1 = self.read_html(self.spam_data, match=".*Water.*", skiprows=[1, 2])
212206
df2 = self.read_html(self.spam_data, match="Unit", skiprows=[2, 1])

0 commit comments

Comments
 (0)