tests.writers: fix toml test

seems to have been forgotten in
https://github.com/NixOS/nixpkgs/pull/512319
This commit is contained in:
isabel
2026-05-02 19:03:31 +01:00
parent 2e72eb309a
commit 1cdfe0bd00
+1 -1
View File
@@ -471,7 +471,7 @@ recurseIntoAttrs {
toml = expectDataEqual {
file = writeTOML "data.toml" { hello = "world"; };
expected = ''
hello = "world"
hello = 'world'
'';
};