Use posixpath.join() explicitely in posixpath.join() test
Used os.path.join before which has different semantics on Windows.
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index 89c4f9e..599c85a 100644
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -69,7 +69,7 @@
"Can't mix strings and bytes in path components.")
# regression, see #15377
with self.assertRaises(TypeError) as cm:
- os.path.join(None, 'str')
+ posixpath.join(None, 'str')
self.assertNotEqual("Can't mix strings and bytes in path components.",
cm.exception.args[0])