Skip to content

Commit

Permalink
TST: fix locations for github based url tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Feb 12, 2017
1 parent 5fb5228 commit 1bcc10d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pandas/tests/io/parser/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def test_read_csv_parse_simple_list(self):
def test_url(self):
# HTTP(S)
url = ('https://raw.github.com/pandas-dev/pandas/master/'
'pandas/io/tests/parser/data/salaries.csv')
'pandas/tests/io/parser/data/salaries.csv')
url_table = self.read_table(url)
dirpath = tm.get_data_path()
localtable = os.path.join(dirpath, 'salaries.csv')
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/io/test_excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def test_read_xlrd_Book(self):
@tm.network
def test_read_from_http_url(self):
url = ('https://raw.github.com/pandas-dev/pandas/master/'
'pandas/io/tests/data/test1' + self.ext)
'pandas/tests/io/data/test1' + self.ext)
url_table = read_excel(url)
local_table = self.get_exceldf('test1')
tm.assert_frame_equal(url_table, local_table)
Expand Down

0 comments on commit 1bcc10d

Please sign in to comment.