From d1e6c0fd0c1b9b157f899ebdabf827ba46559783 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Thu, 3 Nov 2022 09:26:03 +0000 Subject: [PATCH] check if file exists --- tests/AgentTests/NotificationTests.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AgentTests/NotificationTests.hs b/tests/AgentTests/NotificationTests.hs index c8e3f60a5..7edaa867c 100644 --- a/tests/AgentTests/NotificationTests.hs +++ b/tests/AgentTests/NotificationTests.hs @@ -43,7 +43,7 @@ removeFileIfExists filePath = do notificationTests :: ATransport -> Spec notificationTests t = - after_ (removeFile (databaseFile testDB) >> removeFileIfExists (databaseFile testDB2)) $ do + after_ (removeFileIfExists (databaseFile testDB) >> removeFileIfExists (databaseFile testDB2)) $ do describe "Managing notification tokens" $ do it "should register and verify notification token" $ withAPNSMockServer $ \apns ->