diff tests/test.py @ 754:c431160e3c48

FIX: Make tests workinng on Windows again
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 01 Nov 2023 07:26:19 +0100
parents 220a9ec9ac72
children 04c5a3a36499
line wrap: on
line diff
--- a/tests/test.py	Tue Oct 31 08:36:12 2023 +0100
+++ b/tests/test.py	Wed Nov 01 07:26:19 2023 +0100
@@ -2519,7 +2519,7 @@
         cfg = cfg = configmix.config.Configuration(cfg1)
         np = cfg.getvarl_s(u("path2"))
         self.assertEqual(
-            u(os.path.join("a", "b", "d")),
+            u("a/b/d"),
             np)
 
     def test_nested_filter_normpath_posixpath_2(self):
@@ -2531,7 +2531,7 @@
         cfg = cfg = configmix.config.Configuration(cfg1)
         np = cfg.getvarl_s(u("path2"))
         self.assertEqual(
-            u(os.path.join("a", "b", "C", "e")),
+            u("a/b/C/e"),
             np)
 
     def test_nested_filter_normpath_posixpath_upper(self):
@@ -2543,7 +2543,7 @@
         cfg = cfg = configmix.config.Configuration(cfg1)
         np = cfg.getvarl_s(u("path2"))
         self.assertEqual(
-            u(os.path.join("A", "B", "C", "E")),
+            u("A/B/C/E"),
             np)