Skip to content

Commit 1bcc10d

Browse files
committed
TST: fix locations for github based url tests
1 parent 5fb5228 commit 1bcc10d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/tests/io/parser/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ def test_read_csv_parse_simple_list(self):
617617
def test_url(self):
618618
# HTTP(S)
619619
url = ('https://raw.github.com/pandas-dev/pandas/master/'
620-
'pandas/io/tests/parser/data/salaries.csv')
620+
'pandas/tests/io/parser/data/salaries.csv')
621621
url_table = self.read_table(url)
622622
dirpath = tm.get_data_path()
623623
localtable = os.path.join(dirpath, 'salaries.csv')

pandas/tests/io/test_excel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ def test_read_xlrd_Book(self):
581581
@tm.network
582582
def test_read_from_http_url(self):
583583
url = ('https://raw.github.com/pandas-dev/pandas/master/'
584-
'pandas/io/tests/data/test1' + self.ext)
584+
'pandas/tests/io/data/test1' + self.ext)
585585
url_table = read_excel(url)
586586
local_table = self.get_exceldf('test1')
587587
tm.assert_frame_equal(url_table, local_table)

0 commit comments

Comments
 (0)