aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-06-30 16:43:01 -0600
committerBen Burdette <bburdette@gmail.com>2020-06-30 16:43:01 -0600
commitdabbb4538f8b021fbaaacf1e5c2b79fec4228421 (patch)
treef0d1e2e2051127a434b9a92973d7dd22bf06024a /tests
parent9159dfe3d8053e0c77d32893e45f8c527ba83076 (diff)
'from string'
Diffstat (limited to 'tests')
-rw-r--r--tests/misc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc.sh b/tests/misc.sh
index 77a52995a..a81c9dbb1 100644
--- a/tests/misc.sh
+++ b/tests/misc.sh
@@ -17,7 +17,7 @@ nix-env -q --foo 2>&1 | grep "unknown flag"
# Eval Errors.
eval_arg_res=$(nix-instantiate --eval -E 'let a = {} // a; in a.foo' 2>&1 || true)
-echo $eval_arg_res | grep "at: (1:15) from command line argument"
+echo $eval_arg_res | grep "at: (1:15) from string"
echo $eval_arg_res | grep "infinite recursion encountered"
eval_stdin_res=$(echo 'let a = {} // a; in a.foo' | nix-instantiate --eval -E - 2>&1 || true)