about summary refs log tree commit diff
path: root/lib/tests
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2020-09-17 18:14:18 +0200
committerSilvan Mosberger <contact@infinisil.com>2020-09-17 18:20:39 +0200
commit05e4d371ef5c3819b969d34eb76ed7e4b3c99027 (patch)
treebc93a039bb312d685153000223c9f060a08f665a /lib/tests
parentd0be9e98109428e67e4b7fab3e49728cc6633073 (diff)
lib/generators.toPretty: Print [] and {} compactly
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/misc.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix
index 2456b52c099c0..f60e6ad17870a 100644
--- a/lib/tests/misc.nix
+++ b/lib/tests/misc.nix
@@ -461,7 +461,9 @@ runTests {
       function = x: x;
       functionArgs = { arg ? 4, foo }: arg;
       list = [ 3 4 function [ false ] ];
+      emptylist = [];
       attrs = { foo = null; "foo bar" = "baz"; };
+      emptyattrs = {};
       drv = deriv;
     };
     expected = rec {
@@ -476,7 +478,9 @@ runTests {
       function = "<function>";
       functionArgs = "<function, args: {arg?, foo}>";
       list = "[ 3 4 ${function} [ false ] ]";
+      emptylist = "[ ]";
       attrs = "{ foo = null; \"foo bar\" = \"baz\"; }";
+      emptyattrs = "{ }";
       drv = "<derivation ${deriv.drvPath}>";
     };
   };