Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdubbelboer committed May 17, 2024
1 parent 77395ac commit 7c5f433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/testproxy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func main() {
}

if err := db.Ping(ctx); err != nil {
logger.Fatal("failed to ping db", zap.Error(err))
logger.Fatal("failed to ping db", zap.Error(err), zap.String("url", os.Getenv("DATABASE_URL")))
}

connections := make(map[string]net.Conn)
Expand Down
2 changes: 1 addition & 1 deletion features/support/steps/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Given('the {string} backend is running', async function (this: World, backend: s
ENV: 'test'
}

if (this.databaseURL === undefined) {
if (this.databaseURL !== undefined) {
env.DATABASE_URL = this.databaseURL
}

Expand Down

0 comments on commit 7c5f433

Please sign in to comment.