diff --git a/test/helper.go b/test/helper.go index 6fed12e..bb3f057 100644 --- a/test/helper.go +++ b/test/helper.go @@ -3,16 +3,17 @@ package test import ( "context" "database/sql" + "net/url" + "strconv" + "strings" + "time" + "git.dragse.it/anthrove/otter-space-sdk/pkg/models" migrate "github.com/rubenv/sql-migrate" postgrescontainer "github.com/testcontainers/testcontainers-go/modules/postgres" "gorm.io/driver/postgres" "gorm.io/gorm" "gorm.io/gorm/logger" - "net/url" - "strconv" - "strings" - "time" "github.com/testcontainers/testcontainers-go" "github.com/testcontainers/testcontainers-go/wait" @@ -34,7 +35,7 @@ func StartPostgresContainer(ctx context.Context) (*postgrescontainer.PostgresCon postgrescontainer.WithPassword(databasePassword), testcontainers.WithWaitStrategy( wait.ForLog("database system is ready to accept connections"). - WithOccurrence(2).WithStartupTimeout(5*time.Second)), + WithOccurrence(2).WithStartupTimeout(10*time.Second)), ) if err != nil { return nil, nil, err