diff options
Diffstat (limited to 'tests/functional/eval.sh')
-rw-r--r-- | tests/functional/eval.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/functional/eval.sh b/tests/functional/eval.sh index b81bb1e2c..0e789cc47 100644 --- a/tests/functional/eval.sh +++ b/tests/functional/eval.sh @@ -12,6 +12,7 @@ EOF [[ $testStdinHeredoc == '{ bar = 4; foo = 4; }' ]] nix eval --expr 'assert 1 + 2 == 3; true' +nix eval -E 'assert 1 + 2 == 3; true' [[ $(nix eval int -f "./eval.nix") == 123 ]] [[ $(nix eval str -f "./eval.nix") == '"foo"' ]] |