Fix transform_path_to_dotted tests on Windows

Convert paths to normalized absolute ones in transform_path_to_dotted
tests.
This commit is contained in:
micbou
2019-03-13 01:48:10 +01:00
committed by Dave Halter
parent 92a8a84ff2
commit 77a7792afc
2 changed files with 5 additions and 1 deletions

View File

@@ -86,4 +86,7 @@ _s = ['/a', '/b', '/c/d/']
(_s, '/a/c/.py', None),
])
def test_calculate_dotted_from_path(sys_path_, module_path, result):
# tranform_path_to_dotted expects normalized absolute paths.
sys_path_ = [os.path.abspath(path) for path in sys_path_]
module_path = os.path.abspath(module_path)
assert sys_path.transform_path_to_dotted(sys_path_, module_path) == result