about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/eval/src/nix_search_path.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/nix_search_path.rs b/tvix/eval/src/nix_search_path.rs
index 82a2a950998b..b19c5c1dd5cf 100644
--- a/tvix/eval/src/nix_search_path.rs
+++ b/tvix/eval/src/nix_search_path.rs
@@ -186,8 +186,8 @@ mod tests {
         #[test]
         fn second_in_path() {
             let nix_search_path = NixSearchPath::from_str("./.:/").unwrap();
-            let res = nix_search_path.resolve("bin").unwrap();
-            assert_eq!(res, Path::new("/bin"));
+            let res = nix_search_path.resolve("etc").unwrap();
+            assert_eq!(res, Path::new("/etc"));
         }
 
         #[test]