diff options
Diffstat (limited to 'tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix')
-rw-r--r-- | tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix index 4ad5ba897fa7..62c5aa1fd428 100644 --- a/tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix +++ b/tvix/eval/src/tests/tvix_tests/eval-okay-remove.nix @@ -1,5 +1,5 @@ let { - attrs = {x = 123; y = 456;}; +attrs = { x = 123; y = 456; }; - body = (removeAttrs attrs ["x"]).y; -} \ No newline at end of file +body = (removeAttrs attrs [ "x" ]).y; +} |