From 4f9132af43f194bbaf8ca9ea07eb0873fbda205f Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Sun, 7 Dec 2014 18:52:44 -0800 Subject: [PATCH] Adjust tests to use new-style app config --- test/SpecHelper.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SpecHelper.hs b/test/SpecHelper.hs index 5d3d86df1..7108e9032 100644 --- a/test/SpecHelper.hs +++ b/test/SpecHelper.hs @@ -34,7 +34,7 @@ isLeft (Left _ ) = True isLeft _ = False cfg :: AppConfig -cfg = AppConfig "postgres://dbapi_test:@localhost:5432/dbapi_test" 9000 "dbapi_anonymous" False 10 +cfg = AppConfig "dbapi_test" 5432 "dbapi_test" "" "localhost" 3000 "dbapi_anonymous" False 10 testSettings :: SessionSettings testSettings = fromMaybe (error "bad settings") $ H.sessionSettings 1 30