Skip to content

Commit

Permalink
fixed test config
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhnanda committed Oct 6, 2023
1 parent 2402d57 commit cd62c6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ main = do
defaultMain $ tests appPool jobPool
where
connInfo = ConnectInfo
{ connectHost = "vlpostgres"
{ connectHost = "localhost"
, connectPort = fromIntegral (5432 :: Int)
, connectUser = "oddjobs"
, connectPassword = "oddjobs"
, connectDatabase = "oddjobs"
, connectUser = "jobs_test"
, connectPassword = "jobs_test"
, connectDatabase = "jobs_test"
}

createAppPool = Pool.newPool $ Pool.defaultPoolConfig
Expand Down

0 comments on commit cd62c6b

Please sign in to comment.