Skip to content

Commit

Permalink
Update mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
orf authored Apr 13, 2024
1 parent 1bab64e commit 02aae16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ mod tests {
.expect("failed to canonicalize rootfs");

assert_eq!(
&rootfs_absolute_path,
&rootfs_absolute_path.canonicalize().unwrap(),
spec.root.expect("no root in spec").path()
);
}
Expand All @@ -310,7 +310,7 @@ mod tests {
.expect("failed to canonicalize rootfs");

assert_eq!(
&rootfs_absolute_path,
&rootfs_absolute_path.canonicalize().unwrap(),
spec.root.expect("no root in spec").path()
);
}
Expand Down

0 comments on commit 02aae16

Please sign in to comment.