Skip to content

Commit

Permalink
fix: ignore GitGuardian warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kareemmahlees committed Feb 4, 2024
1 parent d133c76 commit 2745782
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/testHelpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func CreatePostgresContainer(ctx context.Context) (*PostgresContainer, error) {
testcontainers.WithImage("postgres:15"),
postgres.WithDatabase("test-db"),
postgres.WithUsername("postgres"),
postgres.WithPassword("postgres"),
postgres.WithPassword("postgres"), // pragma: allowlist secret
testcontainers.WithWaitStrategy(
wait.ForLog("database system is ready to accept connections").
WithOccurrence(2).WithStartupTimeout(5*time.Second)),
Expand All @@ -55,7 +55,7 @@ func CreateMySQLContainer(ctx context.Context) (*MySQLContainer, error) {
testcontainers.WithImage("mysql:latest"),
mysql.WithDatabase("test-db"),
mysql.WithUsername("root"),
mysql.WithPassword("root"),
mysql.WithPassword("root"), // pragma: allowlist secret
)
if err != nil {
return nil, err
Expand Down

0 comments on commit 2745782

Please sign in to comment.