aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/eval-fail-assert-equal-list-length.err.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/eval-fail-assert-equal-list-length.err.exp')
-rw-r--r--test/testdata/eval-fail-assert-equal-list-length.err.exp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/testdata/eval-fail-assert-equal-list-length.err.exp b/test/testdata/eval-fail-assert-equal-list-length.err.exp
new file mode 100644
index 0000000..9010855
--- /dev/null
+++ b/test/testdata/eval-fail-assert-equal-list-length.err.exp
@@ -0,0 +1,8 @@
1error:
2 … while evaluating the condition of the assertion '([ (1) (0) ] == [ (10) ])'
3 at /pwd/lang/eval-fail-assert-equal-list-length.nix:1:1:
4 1| assert [ 1 0 ] == [ 10 ];
5 | ^
6 2| throw "unreachable"
7
8 error: list of size '2' is not equal to list of size '1', left hand side is '[ 1 0 ]', right hand side is '[ 10 ]'