aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/filesystem/mount.tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/src/filesystem/mount.tests.cpp')
-rw-r--r--kernel/src/filesystem/mount.tests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/src/filesystem/mount.tests.cpp b/kernel/src/filesystem/mount.tests.cpp
index d630464..58e9bab 100644
--- a/kernel/src/filesystem/mount.tests.cpp
+++ b/kernel/src/filesystem/mount.tests.cpp
@@ -21,12 +21,12 @@ SCENARIO("Mount construction", "[filesystem][mount]")
WHEN("constructing a mount with the filesystem and root dentry")
{
- auto mount = kernel::filesystem::mount{root_dentry, root_dentry, fs, "/", nullptr};
+ auto mount = kernel::filesystem::mount{root_dentry, root_dentry, fs, nullptr};
THEN("the mount has the correct filesystem, root dentry, mount dentry, and mount path")
{
REQUIRE(mount.get_filesystem() == fs);
- REQUIRE(mount.root_dentry() == root_dentry);
+ REQUIRE(mount.get_root_dentry() == root_dentry);
REQUIRE(mount.get_mount_dentry() == root_dentry);
REQUIRE(mount.get_mount_path() == "/");
}
@@ -41,7 +41,7 @@ SCENARIO("Mount construction", "[filesystem][mount]")
{
THEN("the constructor panics")
{
- REQUIRE_THROWS_AS((kernel::filesystem::mount{root_dentry, root_dentry, nullptr, "/", nullptr}),
+ REQUIRE_THROWS_AS((kernel::filesystem::mount{root_dentry, root_dentry, nullptr, nullptr}),
kernel::tests::cpu::halt);
}
}