summaryrefslogtreecommitdiffstats
path: root/nixos/lib/testing/testScript.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/lib/testing/testScript.nix')
-rw-r--r--nixos/lib/testing/testScript.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/lib/testing/testScript.nix b/nixos/lib/testing/testScript.nix
index 5c36d754d79d..09964777bd92 100644
--- a/nixos/lib/testing/testScript.nix
+++ b/nixos/lib/testing/testScript.nix
@@ -1,13 +1,13 @@
testModuleArgs@{ config, lib, hostPkgs, nodes, moduleType, ... }:
let
- inherit (lib) mkOption types mdDoc;
+ inherit (lib) mkOption types;
inherit (types) either str functionTo;
in
{
options = {
testScript = mkOption {
type = either str (functionTo str);
- description = mdDoc ''
+ description = ''
A series of python declarations and statements that you write to perform
the test.
'';
@@ -25,7 +25,7 @@ in
};
withoutTestScriptReferences = mkOption {
type = moduleType;
- description = mdDoc ''
+ description = ''
A parallel universe where the testScript is invalid and has no references.
'';
internal = true;