diff options
Diffstat (limited to 'test/testdata/eval-fail-assert-equal-attrs-names-2.err.exp')
-rw-r--r-- | test/testdata/eval-fail-assert-equal-attrs-names-2.err.exp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/testdata/eval-fail-assert-equal-attrs-names-2.err.exp b/test/testdata/eval-fail-assert-equal-attrs-names-2.err.exp new file mode 100644 index 0000000..4b68d97 --- /dev/null +++ b/test/testdata/eval-fail-assert-equal-attrs-names-2.err.exp | |||
@@ -0,0 +1,8 @@ | |||
1 | error: | ||
2 | … while evaluating the condition of the assertion '({ a = true; } == { a = true; b = true; })' | ||
3 | at /pwd/lang/eval-fail-assert-equal-attrs-names-2.nix:1:1: | ||
4 | 1| assert { a = true; } == { a = true; b = true; }; | ||
5 | | ^ | ||
6 | 2| throw "unreachable" | ||
7 | |||
8 | error: attribute names of attribute set '{ a = true; }' differs from attribute set '{ a = true; b = true; }' | ||