diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-26T14·50+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-05-26T14·52+0200 |
commit | 39d72640c2459dc2fa689bfe8b756ee193f7b98a (patch) | |
tree | 2d889185bf06c0446d9b3774054f1264fbf443ff /tests/lang | |
parent | a8edf185a9e1677088c8c30acc9d281c8350bca7 (diff) |
Ensure that -I flags get included in nixPath
Also fixes #261.
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/eval-okay-search-path.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-search-path.nix b/tests/lang/eval-okay-search-path.nix index c9ea768a417d..501d5f3f4804 100644 --- a/tests/lang/eval-okay-search-path.nix +++ b/tests/lang/eval-okay-search-path.nix @@ -3,7 +3,7 @@ with builtins; assert pathExists <nix/buildenv.nix>; -assert length nixPath == 3; +assert length nixPath == 6; assert length (filter (x: x.prefix == "nix") nixPath) == 1; assert length (filter (x: baseNameOf x.path == "dir4") nixPath) == 1; |