From 49cab1a4da09378727a038667fec8496f27db1cb Mon Sep 17 00:00:00 2001 From: Felipe Lessa Date: Tue, 28 Apr 2015 00:19:10 -0300 Subject: [PATCH] Silently migrate on PostgreSQL. --- test/Test.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Test.hs b/test/Test.hs index ad4beb7..bc65d07 100644 --- a/test/Test.hs +++ b/test/Test.hs @@ -1242,7 +1242,7 @@ run_worker act = #endif runSqlConn . #if defined (WITH_POSTGRESQL) || defined (WITH_MYSQL) - (runMigration migrateAll >>) $ (cleanDB >> act) + (runMigrationSilent migrateAll >>) $ (cleanDB >> act) #else (runMigrationSilent migrateAll >>) $ act #endif