Skip to content

Commit 12a6abb

Browse files
alimcmaster1proost
authored andcommitted
Remove ref to branch (pandas-dev#29603)
1 parent da19dc7 commit 12a6abb

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

pandas/tests/io/excel/test_readers.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -499,13 +499,9 @@ def test_bad_engine_raises(self, read_ext):
499499

500500
@tm.network
501501
def test_read_from_http_url(self, read_ext):
502-
if read_ext == ".ods": # TODO: remove once on master
503-
pytest.skip()
504502

505-
# TODO: alimcmaster1 - revert to master
506503
url = (
507-
"https://raw.githubusercontent.com/alimcmaster1"
508-
"/pandas/mcmali-tests-dir-struct/"
504+
"https://raw.githubusercontent.com/pandas-dev/pandas/master/"
509505
"pandas/tests/io/data/excel/test1" + read_ext
510506
)
511507
url_table = pd.read_excel(url)

pandas/tests/io/test_html.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,8 @@ def test_banklist_url(self):
133133

134134
@tm.network
135135
def test_spam_url(self):
136-
# TODO: alimcmaster1 - revert to master
137136
url = (
138-
"https://raw.githubusercontent.com/alimcmaster1/"
139-
"pandas/mcmali-tests-dir-struct/"
137+
"https://raw.githubusercontent.com/pandas-dev/pandas/master/"
140138
"pandas/tests/io/data/html/spam.html"
141139
)
142140
df1 = self.read_html(url, ".*Water.*")

0 commit comments

Comments
 (0)