diff --git a/db/test_config.go b/db/test_config.go index 0e6131b27..4416b8b55 100644 --- a/db/test_config.go +++ b/db/test_config.go @@ -12,10 +12,10 @@ var TestDB database func InitTestDB() { rdsHost := "localhost" - rdsPort := fmt.Sprintf("%d", 5432) + rdsPort := fmt.Sprintf("%d", 5532) rdsDbName := "test_db" - rdsUsername := "raph" - rdsPassword := "raph" + rdsUsername := "test_user" + rdsPassword := "test_password" dbURL := fmt.Sprintf("postgres://%s:%s@%s:%s/%s", rdsUsername, rdsPassword, rdsHost, rdsPort, rdsDbName) if dbURL == "" {