Skip to content

Commit

Permalink
reverted test db changes
Browse files Browse the repository at this point in the history
  • Loading branch information
elraphty committed Oct 9, 2024
1 parent 840b5d4 commit 9a86c38
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 9a86c38

Please sign in to comment.