Skip to content

Commit 5781489

Browse files
1 parent 8e1f8a8 commit 5781489

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/io/test_html.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,8 +1236,8 @@ def run(self):
12361236
assert None is helper_thread1.err is helper_thread2.err
12371237

12381238
def test_parse_Path_object(self):
1239-
file_path_string = r'pandas/tests/io/data/html/spam.html'
1239+
file_path_string = r"pandas/tests/io/data/html/spam.html"
12401240
file_path = Path(file_path_string)
1241-
df1 = pd.read_html(file_path_string)[0]
1242-
df2 = pd.read_html(file_path)[0]
1241+
df1 = self.read_html(file_path_string)[0]
1242+
df2 = self.read_html(file_path)[0]
12431243
tm.assert_frame_equal(df1, df2)

0 commit comments

Comments
 (0)