From c13eb5ade997b28b81dd35e916d80756986bb48f Mon Sep 17 00:00:00 2001 From: Lucjan Bryndza Date: Tue, 12 Jan 2021 14:06:56 +0100 Subject: [PATCH] [EGD-4498] Fix vfscore-ut Some paths are no longer available in the fat fs this patch fix this issue. --- module-vfs/tests/unittest_filesystem_core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module-vfs/tests/unittest_filesystem_core.cpp b/module-vfs/tests/unittest_filesystem_core.cpp index 3be2a13b98971019da413abdb3d6ba0635d6698b..dbaf3164853ea3ef999d4ff6719a3ba6f7e3a994 100644 --- a/module-vfs/tests/unittest_filesystem_core.cpp +++ b/module-vfs/tests/unittest_filesystem_core.cpp @@ -220,7 +220,7 @@ TEST_CASE("Corefs: Directory operations") REQUIRE(ret == 0); REQUIRE(fscore.mount("emmc0part0", "/sys", "vfat") == 0); - const auto dirhandle = fscore.diropen("/sys/user"); + const auto dirhandle = fscore.diropen("/sys/current"); REQUIRE(dirhandle); REQUIRE(dirhandle->error() == 0);