From 4f2aa2f7061984fa7aa21bac92ed5eec3f3daa06 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 14 Apr 2014 16:24:08 +0200 Subject: Fix installer test evaluation --- nixos/tests/installer.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index aebaba918111..43bea22d852e 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; ''; - }); + }; } -- cgit 1.4.1