about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30T09·27+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30T09·28+0200
commit3d221a7bb13a864a50c549f66032ead2bf5aaec0 (patch)
tree7c5d5afbd55c67a7855f5fc938132e5cab959ce6 /tests
parent2ea2703fe987d57ff189d7a924c64f03f65170c1 (diff)
Rename nixPath to __nixPath
The name ‘nixPath’ breaks existing code.
Diffstat (limited to 'tests')
-rw-r--r--tests/lang/eval-okay-search-path.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lang/eval-okay-search-path.nix b/tests/lang/eval-okay-search-path.nix
index f48bf3fad2..cca41f821f 100644
--- a/tests/lang/eval-okay-search-path.nix
+++ b/tests/lang/eval-okay-search-path.nix
@@ -3,9 +3,9 @@ with builtins;
 
 assert pathExists <nix/buildenv.nix>;
 
-assert length nixPath == 6;
-assert length (filter (x: x.prefix == "nix") nixPath) == 1;
-assert length (filter (x: baseNameOf x.path == "dir4") nixPath) == 1;
+assert length __nixPath == 6;
+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 = ./dir2; } { path = ./dir1; } ]; in import <a.nix>)
+  + (let __nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import <a.nix>)