# HG changeset patch # User Franz Glasner # Date 1698819979 -3600 # Node ID c431160e3c48f1f060a21ba5528fc1bdec186559 # Parent 0f9e8337a24fc3f35eeafbbf4636a17eae4f0ebf FIX: Make tests workinng on Windows again diff -r 0f9e8337a24f -r c431160e3c48 CHANGES.txt --- a/CHANGES.txt Tue Oct 31 08:36:12 2023 +0100 +++ b/CHANGES.txt Wed Nov 01 07:26:19 2023 +0100 @@ -12,6 +12,13 @@ Pre-1.0 Series -------------- +n/a (n/a) +~~~~~~~~~ + +- **[test]** + Test fixes for the tests on Windows + + v0.23.1 (2023-10-31) ~~~~~~~~~~~~~~~~~~~~ diff -r 0f9e8337a24f -r c431160e3c48 tests/test.py --- 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)