Removed extra tests that where added but unrelated to the fix.

This commit is contained in:
Steffen Schümann 2026-07-11 18:37:05 +02:00
parent 542f355853
commit 333fc89c7d

View File

@ -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