about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2015-01-29T08·29-0500
committerShea Levy <shea@shealevy.com>2015-01-29T08·29-0500
commit73bf32ce9400a45f49d5551268f6a611735bdb32 (patch)
tree6b42fa28be7af285d9dfaff86e2f7c7efd86f018 /tests
parentde91a42c6ed6f35adae2ca0be6ad9ce556aac335 (diff)
parentc9bd6a1de41eb7f137e628df4a127ac8941ec07d (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.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-context.nix b/tests/lang/eval-okay-context.nix
index 8cd8f2e131..7b9531cfe9 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"