Skip to content

Commit ce356df

Browse files
committed
chore: fix formatting issue
1 parent 8deb018 commit ce356df

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

oryx/dbal/testhelpers.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ import (
1010
"regexp"
1111
"testing"
1212

13-
"github.com/ory/x/sqlcon/dockertest"
1413
"github.com/pkg/errors"
1514
"github.com/stretchr/testify/require"
1615

16+
"github.com/ory/x/sqlcon/dockertest"
17+
1718
"github.com/ory/pop/v6"
1819
"github.com/ory/x/fsx"
1920
)
@@ -28,7 +29,7 @@ func RestoreFromSchemaDump(t testing.TB, c *pop.Connection, migrations fs.FS, wr
2829

2930
updateDump := func(t testing.TB) {
3031
dump := dockertest.DumpSchema(t, c)
31-
f, err := os.OpenFile(dumpFilename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
32+
f, err := os.OpenFile(dumpFilename, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o644)
3233
require.NoError(t, err)
3334
defer f.Close()
3435

0 commit comments

Comments
 (0)