From d4605fc488a1dab48faaf17d8858c685fdb08c72 Mon Sep 17 00:00:00 2001 From: davidovitch Date: Sat, 5 Sep 2015 22:09:38 +0200 Subject: [PATCH] TST: corrected URL for newly added Excel test data file --- pandas/io/tests/test_excel.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pandas/io/tests/test_excel.py b/pandas/io/tests/test_excel.py index 073fc55357df7..d8ef68b78b581 100644 --- a/pandas/io/tests/test_excel.py +++ b/pandas/io/tests/test_excel.py @@ -415,11 +415,8 @@ def test_read_xlrd_Book(self): @tm.network def test_read_from_http_url(self): - # TODO: remove this when merging into master - url = ('https://raw.github.com/davidovitch/pandas/master/' + url = ('https://raw.github.com/pydata/pandas/master/' 'pandas/io/tests/data/test1' + self.ext) -# url = ('https://raw.github.com/pydata/pandas/master/' -# 'pandas/io/tests/data/test' + self.ext) url_table = read_excel(url) local_table = self.get_exceldf('test1') tm.assert_frame_equal(url_table, local_table)