From 12b3066aae46a8ccc3d21f54f668a3f4be344332 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Wed, 28 Sep 2022 18:33:01 +0200 Subject: [PATCH] lib.nixos.runTest: Return the test itself (NB: the lib in the flake) Correcting a mistake I made when removing the test matrix code from https://github.com/NixOS/nixpkgs/pull/191540 --- nixos/lib/testing/call-test.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/lib/testing/call-test.nix b/nixos/lib/testing/call-test.nix index 3e137e78cd47..e3716bf163aa 100644 --- a/nixos/lib/testing/call-test.nix +++ b/nixos/lib/testing/call-test.nix @@ -10,7 +10,7 @@ in }; result = mkOption { internal = true; - default = config; + default = config.test; }; }; }