Match new config param order in tests

This commit is contained in:
Joe Nelson
2016-02-05 09:39:43 -08:00
parent 4dec445b82
commit f65557573c
+1 -1
View File
@@ -30,7 +30,7 @@ dbString :: String
dbString = "postgres://postgrest_test_authenticator@localhost:5432/postgrest_test"
cfg :: String -> Maybe Integer -> AppConfig
cfg conStr = AppConfig conStr 3000 "postgrest_test_anonymous" "test" (secret "safe") 10
cfg conStr = AppConfig conStr "postgrest_test_anonymous" "test" 3000 (secret "safe") 10
cfgDefault :: AppConfig
cfgDefault = cfg dbString Nothing