Fix local salaries.csv path · pandas-dev/pandas@30e1caf (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 30e1caf

Fix local salaries.csv path

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 1 addition & 1 deletion

Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ class TestCompressedUrl:
24 24 }
25 25
26 26 def __init__(self):
27 -path = os.path.join(tm.get_data_path(), 'salary.table.csv')
27 +path = os.path.join(tm.get_data_path(), 'salaries.csv')
28 28 self.local_table = read_table(path)
29 29 self.base_url = ('https://github.com/pandas-dev/pandas/raw/master/'
30 30 'pandas/io/tests/parser/data/salaries.csv')