MORE MORE

This commit is contained in:
Conrad Irwin 2025-08-25 12:50:11 -06:00
parent 79f77c6395
commit 008b814274

View file

@ -216,8 +216,8 @@ mod test {
assert_eq!(
matches,
&[
PathBuf::from("/root/apple/banana/carrot"),
PathBuf::from("/root/apple/bandana/carbonara")
PathBuf::from(path!("/root/apple/banana/carrot")),
PathBuf::from(path!("/root/apple/bandana/carbonara"))
]
);
@ -228,8 +228,8 @@ mod test {
assert_eq!(
matches,
&[
PathBuf::from("/root/apple/banana/carrot"),
PathBuf::from("/root/apple/bandana/carbonara")
PathBuf::from(path!("/root/apple/banana/carrot")),
PathBuf::from(path!("/root/apple/bandana/carbonara"))
]
);
}