diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-03-11 16:41:22 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-03-11 16:57:48 +0100 |
commit | 9950cdec3514949942a79c58764b1ea9bf9d5d57 (patch) | |
tree | e514f3102570c3e10034e0c1476b863ca289504e /tests/lang | |
parent | e02481ded216ffb5b06b413e3695d4e11e62e02f (diff) |
Move some corepkgs into the nix binary
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 cca41f821..c5a123d04 100644 --- a/tests/lang/eval-okay-search-path.nix +++ b/tests/lang/eval-okay-search-path.nix @@ -1,7 +1,7 @@ with import ./lib.nix; with builtins; -assert pathExists <nix/buildenv.nix>; +assert pathExists <nix/fetchurl.nix>; assert length __nixPath == 6; assert length (filter (x: x.prefix == "nix") __nixPath) == 1; |