From 829dda3ee90b0064bdba355befb2d7304f65df6b Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 12 Jul 2020 11:18:35 +0200 Subject: [PATCH] Fix another windows issue --- test/test_inference/test_buildout_detection.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_inference/test_buildout_detection.py b/test/test_inference/test_buildout_detection.py index 4817339d..01d56a78 100644 --- a/test/test_inference/test_buildout_detection.py +++ b/test/test_inference/test_buildout_detection.py @@ -80,4 +80,5 @@ def test_path_from_sys_path_assignment(Script): paths = check_module_test(Script, code) assert 1 not in paths - assert '/home/test/.buildout/eggs/important_package.egg' in map(str, paths) + assert os.path.abspath('/home/test/.buildout/eggs/important_package.egg') \ + in map(str, paths)