forked from Mirrorlandia_minetest/minetest
Fix filepath > RemoveRelativePathComponent unittest
(was broken by e4ee6548afd01040046ee3780d0fbb121d141251)
This commit is contained in:
parent
785a9a6c1a
commit
bb06d377a1
@ -251,7 +251,7 @@ void TestFilePath::testRemoveRelativePathComponent()
|
|||||||
UASSERT(result == p("/home/user/minetest/worlds/world1"));
|
UASSERT(result == p("/home/user/minetest/worlds/world1"));
|
||||||
path = p(".");
|
path = p(".");
|
||||||
result = fs::RemoveRelativePathComponents(path);
|
result = fs::RemoveRelativePathComponents(path);
|
||||||
UASSERT(result == "");
|
UASSERT(result == ".");
|
||||||
path = p("./subdir/../..");
|
path = p("./subdir/../..");
|
||||||
result = fs::RemoveRelativePathComponents(path);
|
result = fs::RemoveRelativePathComponents(path);
|
||||||
UASSERT(result == "");
|
UASSERT(result == "");
|
||||||
|
Loading…
Reference in New Issue
Block a user