initfs: Fix test

This commit is contained in:
bjorn3
2026-04-25 13:49:49 +02:00
parent 6b33cd623a
commit 8b1fb36e6b
+1 -1
View File
@@ -94,11 +94,11 @@ fn archive_and_read() -> Result<()> {
let reference_tree = Node::dir([(
b"foo",
Node::dir([
(b"file-link.txt".as_slice(), Node::link(b"file.txt")),
(
b"file.txt".as_slice(),
Node::file(b"This is a file meant to be used in a redox-initfs test.\n"),
),
(b"file-link.txt".as_slice(), Node::link(b"foo/file.txt")),
]),
)]);