civodul pushed a commit to branch nix
in repository guix.
commit ceed8192848760430c9c23659f9cb979aad1f9c3
Author: Eelco Dolstra <[email protected]>
Date: Thu May 29 19:04:27 2014 +0200
Fix test
---
tests/lang/eval-okay-search-path.exp | 2 +-
tests/lang/eval-okay-search-path.nix | 2 +-
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 ad05904..4519bc4 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 e0f433f..f48bf3f 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>)