diff options
| author | Marcel Braun <marcel.braun@ost.ch> | 2026-05-11 18:54:27 +0200 |
|---|---|---|
| committer | Marcel Braun <marcel.braun@ost.ch> | 2026-05-11 18:54:27 +0200 |
| commit | a4c9b9bdb768ce20c9f9eac353a34598e4a422a9 (patch) | |
| tree | b421998ccb81316792fa4bb85d7677669b92732a /kernel/src/filesystem/dentry.tests.cpp | |
| parent | 7683d52861f05566a3b82e24484e367fcdc63ea8 (diff) | |
| download | kernel-a4c9b9bdb768ce20c9f9eac353a34598e4a422a9.tar.xz kernel-a4c9b9bdb768ce20c9f9eac353a34598e4a422a9.zip | |
Rename get_full_path to get_absolute_path
Diffstat (limited to 'kernel/src/filesystem/dentry.tests.cpp')
| -rw-r--r-- | kernel/src/filesystem/dentry.tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/src/filesystem/dentry.tests.cpp b/kernel/src/filesystem/dentry.tests.cpp index 1a5a784..dd01394 100644 --- a/kernel/src/filesystem/dentry.tests.cpp +++ b/kernel/src/filesystem/dentry.tests.cpp @@ -142,9 +142,9 @@ SCENARIO("Dentry path resolution", "[filesystem][dentry]") THEN("the full path is constructed correctly") { - REQUIRE(root_dentry->get_full_path() == "/"); - REQUIRE(home_dentry->get_full_path() == "/home"); - REQUIRE(user_dentry->get_full_path() == "/home/user"); + REQUIRE(root_dentry->get_absolute_path() == "/"); + REQUIRE(home_dentry->get_absolute_path() == "/home"); + REQUIRE(user_dentry->get_absolute_path() == "/home/user"); } } }
\ No newline at end of file |
