diff options
Diffstat (limited to 'tests/functional/lang/eval-fail-remove.nix')
-rw-r--r-- | tests/functional/lang/eval-fail-remove.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/functional/lang/eval-fail-remove.nix b/tests/functional/lang/eval-fail-remove.nix index 539e0eb0a..3ea7b1c86 100644 --- a/tests/functional/lang/eval-fail-remove.nix +++ b/tests/functional/lang/eval-fail-remove.nix @@ -1,5 +1,4 @@ -let { +let attrs = {x = 123; y = 456;}; - - body = (removeAttrs attrs ["x"]).x; -}
\ No newline at end of file +in + (removeAttrs attrs ["x"]).x |