From cd9cb19765e502e1472ff30e08c3a7fe6c3d9a1e Mon Sep 17 00:00:00 2001 From: JRoberts <8711996+jr-simplex@users.noreply.github.com> Date: Tue, 21 Jun 2022 14:09:05 +0400 Subject: [PATCH] ntf: remove debug output from test --- tests/AgentTests/NotificationTests.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/AgentTests/NotificationTests.hs b/tests/AgentTests/NotificationTests.hs index 3666f007f..c360d87eb 100644 --- a/tests/AgentTests/NotificationTests.hs +++ b/tests/AgentTests/NotificationTests.hs @@ -142,9 +142,7 @@ testNtfTokenSecondRegistration APNSMockServer {apnsQ} = do NTActive <- checkNtfToken a tkn -- and the second is not yet verified liftIO $ threadDelay 50000 - r <- checkNtfToken a' tkn - liftIO . print $ "checkNtfToken a' tkn: " <> show r - unless (r == NTConfirmed) $ error "bad status" + NTConfirmed <- checkNtfToken a' tkn -- now the second token registration is verified verifyNtfToken a' tkn verification' nonce' -- the first registration is removed