mirror of
				https://github.com/nvbn/thefuck.git
				synced 2025-10-31 07:04:12 +00:00 
			
		
		
		
	#486: Use Path instead of PosixPath
This commit is contained in:
		| @@ -1,7 +1,7 @@ | |||||||
| # -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||||||
|  |  | ||||||
| import pytest | import pytest | ||||||
| from pathlib import PosixPath | from pathlib import Path | ||||||
| from thefuck import corrector, const | from thefuck import corrector, const | ||||||
| from tests.utils import Rule, Command, CorrectedCommand | from tests.utils import Rule, Command, CorrectedCommand | ||||||
| from thefuck.corrector import get_corrected_commands, organize_commands | from thefuck.corrector import get_corrected_commands, organize_commands | ||||||
| @@ -30,7 +30,7 @@ class TestGetRules(object): | |||||||
|         (['git.py', 'bash.py'], ['git'], ['git'], [])]) |         (['git.py', 'bash.py'], ['git'], ['git'], [])]) | ||||||
|     def test_get_rules(self, glob, settings, paths, conf_rules, exclude_rules, |     def test_get_rules(self, glob, settings, paths, conf_rules, exclude_rules, | ||||||
|                        loaded_rules): |                        loaded_rules): | ||||||
|         glob([PosixPath(path) for path in paths]) |         glob([Path(path) for path in paths]) | ||||||
|         settings.update(rules=conf_rules, |         settings.update(rules=conf_rules, | ||||||
|                         priority={}, |                         priority={}, | ||||||
|                         exclude_rules=exclude_rules) |                         exclude_rules=exclude_rules) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user