From 3d221a7bb13a864a50c549f66032ead2bf5aaec0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 30 Jul 2014 11:27:34 +0200 Subject: Rename nixPath to __nixPath MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The name ‘nixPath’ breaks existing code. --- tests/lang/eval-okay-search-path.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/lang/eval-okay-search-path.nix b/tests/lang/eval-okay-search-path.nix index f48bf3fad218..cca41f821f83 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 ; -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 + import + import + import - + (let nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import ) + + (let __nixPath = [ { path = ./dir2; } { path = ./dir1; } ]; in import ) -- cgit 1.4.1