From 333fc89c7d3f8962d7bc1025565c27e046f28e28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schu=CC=88mann?= Date: Sat, 11 Jul 2026 18:37:05 +0200 Subject: [PATCH] Removed extra tests that where added but unrelated to the fix. --- test/filesystem_test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/filesystem_test.cpp b/test/filesystem_test.cpp index f95506f..7752673 100644 --- a/test/filesystem_test.cpp +++ b/test/filesystem_test.cpp @@ -977,8 +977,6 @@ TEST_CASE("fs.path.gen - path generation", "[filesystem][path][fs.path.gen]") CHECK(fs::path(R"(\\?\UNC\fe80::1\c$\foo)").lexically_normal() == R"(\\?\UNC\fe80::1\c$\foo)"); CHECK(fs::path(R"(\\?\UNC\server\share\foo)").lexically_normal() == R"(\\?\UNC\server\share\foo)"); CHECK(fs::path(R"(\\server\share\foo)").lexically_normal() == R"(\\server\share\foo)"); - CHECK(fs::path(R"(\\?\C:\foo\..\bar)").lexically_normal() == R"(\\?\C:\bar)"); - CHECK(fs::path(R"(\??\C:\foo\..\bar)").lexically_normal() == R"(\??\C:\bar)"); CHECK(fs::path(R"(C:foo\..\bar)").lexically_normal() == R"(C:bar)"); #endif