about summary refs log tree commit diff
path: root/pkgs/build-support/testers
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2022-09-29 10:32:31 +0200
committerRobert Hensing <robert@roberthensing.nl>2022-09-29 10:49:09 +0200
commitaed1deab0574f663be2d401861bef303a9d023ba (patch)
treef75ec9a741d7f2c72c1d6891ac8042416256ab65 /pkgs/build-support/testers
parentf4e8fc64ca9fa42dcfa249dd5e251b41dcf873c8 (diff)
nixos/testing: Fix release.nix tests evaluation
Fixes the problem introduced by 12b3066aae46a8ccc3d21f54f668a3f4be344332
which caused nixos/release.nix to return the wrong attributes, while
intending to only affect nixos/lib's runTest.
This also removes callTest from the test options, because callTest is
only ever invoked by all-tests.nix.
Diffstat (limited to 'pkgs/build-support/testers')
-rw-r--r--pkgs/build-support/testers/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/testers/default.nix b/pkgs/build-support/testers/default.nix
index 020352836c899..7244d3d385753 100644
--- a/pkgs/build-support/testers/default.nix
+++ b/pkgs/build-support/testers/default.nix
@@ -67,6 +67,6 @@
             else test;
           calledTest = lib.toFunction loadedTest pkgs;
         in
-          nixosTesting.makeTest calledTest;
+          nixosTesting.simpleTest calledTest;
 
 }