Skip to content

Commit

Permalink
changed test db name
Browse files Browse the repository at this point in the history
  • Loading branch information
elraphty committed Jun 14, 2024
1 parent df9ccd6 commit 66578f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/test_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
var TestDB database

func InitTestDB() {
rdsHost := "test_db_default"
rdsHost := "test_postgres"
rdsPort := fmt.Sprintf("%d", 5532)
rdsDbName := "test_postgres"
rdsDbName := "test_db"
rdsUsername := "test_user"
rdsPassword := "test_password"
dbURL := fmt.Sprintf("postgres://%s:%s@%s:%s/%s", rdsUsername, rdsPassword, rdsHost, rdsPort, rdsDbName)
Expand Down

0 comments on commit 66578f1

Please sign in to comment.