diff options
author | Shea Levy <shea@shealevy.com> | 2015-01-29T08·29-0500 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2015-01-29T08·29-0500 |
commit | 73bf32ce9400a45f49d5551268f6a611735bdb32 (patch) | |
tree | 6b42fa28be7af285d9dfaff86e2f7c7efd86f018 /tests | |
parent | de91a42c6ed6f35adae2ca0be6ad9ce556aac335 (diff) | |
parent | c9bd6a1de41eb7f137e628df4a127ac8941ec07d (diff) |
Merge remote-tracking branch 'shlevy/baseNameOf-no-copy'
baseNameOf: Don't copy paths to the store first
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lang/eval-okay-context.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-context.nix b/tests/lang/eval-okay-context.nix index 8cd8f2e131d8..7b9531cfe9e1 100644 --- a/tests/lang/eval-okay-context.nix +++ b/tests/lang/eval-okay-context.nix @@ -1,4 +1,4 @@ -let s = "foo ${builtins.substring 33 100 (baseNameOf ./eval-okay-context.nix)} bar"; +let s = "foo ${builtins.substring 33 100 (baseNameOf "${./eval-okay-context.nix}")} bar"; in if s != "foo eval-okay-context.nix bar" then abort "context not discarded" |