diff --git a/pkgs/test/config.nix b/pkgs/test/config.nix index 6047b013206a..734e1aace148 100644 --- a/pkgs/test/config.nix +++ b/pkgs/test/config.nix @@ -9,12 +9,15 @@ lib.recurseIntoAttrs { tempAllow pkgs.authy "2.1.0" [ "electron-9.4.4" ]; }; }; - # Allow with forgetting - tempAllow = p: v: pa: - lib.optionals (lib.assertMsg (p.version == v) "${p.name} is no longer at version ${v}, consider removing the tempAllow") pa; - # For this test we don't _really_ care about the version though, - # only about evaluation strictness - tempAllowAlike = p: v: pa: builtins.seq v builtins.seq p.version pa; + # A simplification of `tempAllow` that doesn't check the version, but + # has the same strictness characteristics. Actually checking a version + # here would add undue maintenance. + # + # Original: + # tempAllow = p: v: pa: + # lib.optionals (lib.assertMsg (p.version == v) "${p.name} is no longer at version ${v}, consider removing the tempAllow") pa; + # + tempAllow = p: v: pa: builtins.seq v builtins.seq p.version pa; in pkgs.hello;