From 1cdfe0bd00be827a5c04c0ef866393160fcfc4a5 Mon Sep 17 00:00:00 2001 From: isabel Date: Sat, 2 May 2026 19:03:31 +0100 Subject: [PATCH] tests.writers: fix toml test seems to have been forgotten in https://github.com/NixOS/nixpkgs/pull/512319 --- pkgs/build-support/writers/test.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/writers/test.nix b/pkgs/build-support/writers/test.nix index e39681865ab2..3b8b449d7585 100644 --- a/pkgs/build-support/writers/test.nix +++ b/pkgs/build-support/writers/test.nix @@ -471,7 +471,7 @@ recurseIntoAttrs { toml = expectDataEqual { file = writeTOML "data.toml" { hello = "world"; }; expected = '' - hello = "world" + hello = 'world' ''; };