summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-14 16:24:08 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-14 16:24:08 +0200
commit4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06 (patch)
treeab0f75372d755572fa0055331f6a5cc566e18485 /nixos/tests/installer.nix
parent5d6c6abe50257e8a14d5d567e3a2062dc7eb3325 (diff)
downloadnixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.tar
nixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.tar.gz
nixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.tar.bz2
nixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.tar.lz
nixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.tar.xz
nixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.tar.zst
nixpkgs-4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06.zip
Fix installer test evaluation
Diffstat (limited to 'nixos/tests/installer.nix')
-rw-r--r--nixos/tests/installer.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index aebaba91811..43bea22d852 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -193,13 +193,13 @@ let
 
   makeInstallerTest =
     { createPartitions, fileSystems, testChannel ? false, grubVersion ? 2, grubDevice ? "/dev/vda" }:
-    makeTest ({ ... }: {
+    makeTest {
       inherit iso;
       nodes = if testChannel then { inherit webserver; } else { };
       testScript = testScriptFun {
         inherit createPartitions fileSystems testChannel grubVersion grubDevice;
       };
-    });
+    };
 
 
 in {
@@ -329,7 +329,7 @@ in {
     };
 
   # Rebuild the CD configuration with a little modification.
-  rebuildCD = makeTest ({ ... }:
+  rebuildCD = makeTest
     { inherit iso;
       nodes = { };
       testScript =
@@ -353,5 +353,5 @@ in {
 
           $machine->shutdown;
         '';
-    });
+    };
 }