From df8c964ca6371dfaddaae72766cfd14f290d7769 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Sat, 12 Mar 2022 01:28:16 +0100 Subject: [PATCH] Remove print debug line --- test/Golden.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Golden.hs b/test/Golden.hs index b2a2687..41d6faa 100644 --- a/test/Golden.hs +++ b/test/Golden.hs @@ -84,10 +84,9 @@ preserveStateSnd update = do put (newI, fromMaybe s newS) golden1 :: Bool -> Test -golden1 = testBuild "golden1" $ \output endState@MkNOMV1State{fullSummary = summary@MkDependencySummary{..}} -> do +golden1 = testBuild "golden1" $ \output endState@MkNOMV1State{fullSummary = MkDependencySummary{..}} -> do let noOfBuilds = 4 assertBool "Everything built" (CSet.null plannedBuilds) - print summary assertBool "No running builds" (CMap.null runningBuilds) assertEqual "Builds completed" noOfBuilds (CMap.size completedBuilds) let outputStorePaths = mapMaybe parseStorePath (String.lines output)