From 4aef6f76d4f610367b57d7fb9f389ca035c291df Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Fri, 10 Jul 2026 13:19:56 +0200 Subject: [PATCH] tests.problems: adjust test code for oldestSupportedRelease=26.05 In 53cd6f263c9a90ae02fdcabceb7db10c60e3d3cd the oldestSupportedRelease version was bumped to 26.05 which caused the meta/problems tests to fail because the `config.allowBrokenPredicate` is now deprecated and the code is warning about it. --- .../problems/cases/allow-broken-predicate-match/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/test/problems/cases/allow-broken-predicate-match/default.nix b/pkgs/test/problems/cases/allow-broken-predicate-match/default.nix index 7869bc996809..df18d357e1e8 100644 --- a/pkgs/test/problems/cases/allow-broken-predicate-match/default.nix +++ b/pkgs/test/problems/cases/allow-broken-predicate-match/default.nix @@ -5,7 +5,7 @@ let system = "x86_64-linux"; overlays = [ ]; config = { - allowBrokenPredicate = attrs: lib.getName attrs == "a"; + problems.handlers.a.broken = "ignore"; }; }; in