Unverified Commit 1cdfe0bd authored by isabel's avatar isabel
Browse files

tests.writers: fix toml test

seems to have been forgotten in
https://github.com/NixOS/nixpkgs/pull/512319
parent 2e72eb30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -471,7 +471,7 @@ recurseIntoAttrs {
    toml = expectDataEqual {
      file = writeTOML "data.toml" { hello = "world"; };
      expected = ''
        hello = "world"
        hello = 'world'
      '';
    };