You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-12-24 00:01:31 +02:00
go fmt
This commit is contained in:
@@ -38,7 +38,7 @@ func TestAuthenticatorFile(t *testing.T) {
|
||||
error error
|
||||
}{
|
||||
{"NoKeyExpiration", time.Now(), time.Duration(0), nil},
|
||||
{"KeyExpirationOk", time.Now(), time.Duration(time.Second * 3600), nil},
|
||||
{"KeyExpirationOk", time.Now(), time.Duration(time.Second * 3600), nil},
|
||||
{"KeyExpirationDisabled", time.Now().Add(time.Second * 3600 * 3), time.Duration(time.Second * 3600), nil},
|
||||
}
|
||||
|
||||
|
||||
@@ -47,13 +47,12 @@ func New() *Test {
|
||||
|
||||
awsSession := session.Must(session.NewSession())
|
||||
|
||||
|
||||
// ============================================================
|
||||
// Startup Postgres container
|
||||
|
||||
var (
|
||||
masterDB *sqlx.DB
|
||||
container *docker.Container
|
||||
masterDB *sqlx.DB
|
||||
container *docker.Container
|
||||
)
|
||||
if !DisableDb {
|
||||
var err error
|
||||
|
||||
Reference in New Issue
Block a user