Skip to content

Commit

Permalink
reverted test db config
Browse files Browse the repository at this point in the history
  • Loading branch information
elraphty committed Oct 1, 2024
1 parent 13698ca commit 3dcdd34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions db/test_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 == "" {
Expand Down

0 comments on commit 3dcdd34

Please sign in to comment.