Fix local salaries.csv path · pandas-dev/pandas@30e1caf (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
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') |