about summary refs log tree commit diff
path: root/tests/lang
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-05-29T17·04+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-05-29T17·04+0200
commitceed8192848760430c9c23659f9cb979aad1f9c3 (patch)
tree696e1a64396e1aad4892c9b73520b76bbe3c2dc8 /tests/lang
parentbecc2b01678c5742b3fe6c379430606a5ef8e34d (diff)
Fix test
Diffstat (limited to 'tests/lang')
-rw-r--r--tests/lang/eval-okay-search-path.exp2
-rw-r--r--tests/lang/eval-okay-search-path.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/lang/eval-okay-search-path.exp b/tests/lang/eval-okay-search-path.exp
index ad05904ba1..4519bc406d 100644
--- a/tests/lang/eval-okay-search-path.exp
+++ b/tests/lang/eval-okay-search-path.exp
@@ -1 +1 @@
-"abcca"
+"abccX"
diff --git a/tests/lang/eval-okay-search-path.nix b/tests/lang/eval-okay-search-path.nix
index e0f433fec6..f48bf3fad2 100644
--- a/tests/lang/eval-okay-search-path.nix
+++ b/tests/lang/eval-okay-search-path.nix
@@ -8,4 +8,4 @@ assert length (filter (x: x.prefix == "nix") nixPath) == 1;
 assert length (filter (x: baseNameOf x.path == "dir4") nixPath) == 1;
 
 import <a.nix> + import <b.nix> + import <c.nix> + import <dir5/c.nix>
-  + (let nixPath = [ { path = ./dir1; } { path = ./dir2; } ]; in import <a.nix>)
+  + (let nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import <a.nix>)