diff options
| author | Marcel Braun <marcel.braun@ost.ch> | 2026-05-10 21:49:20 +0200 |
|---|---|---|
| committer | Lukas Oesch <lukasoesch20@gmail.com> | 2026-05-11 22:34:54 +0200 |
| commit | 85fd2e3b4da7d84a9357b35bde740b780fe0cb72 (patch) | |
| tree | 9ec6bfc1cb6cd9690c2d56957d1b0731625356f2 /kernel/src/filesystem/mount.tests.cpp | |
| parent | feab4cd81f2bbc89e55353a54df2575b9c21b514 (diff) | |
| download | kernel-85fd2e3b4da7d84a9357b35bde740b780fe0cb72.tar.xz kernel-85fd2e3b4da7d84a9357b35bde740b780fe0cb72.zip | |
Rename root_dentry() to get_root_dentry()
Diffstat (limited to 'kernel/src/filesystem/mount.tests.cpp')
| -rw-r--r-- | kernel/src/filesystem/mount.tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/src/filesystem/mount.tests.cpp b/kernel/src/filesystem/mount.tests.cpp index 4b44983..58e9bab 100644 --- a/kernel/src/filesystem/mount.tests.cpp +++ b/kernel/src/filesystem/mount.tests.cpp @@ -26,7 +26,7 @@ SCENARIO("Mount construction", "[filesystem][mount]") 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() == "/"); } |
