Skip to content

Commit 742dc2a

Browse files
committed
refactor(_example):
Adjust code import order - Adjust the import order of "github.com/gocraft/dbr/v2" to before "github.com/stretchr/testify/assert" - This change does not add or remove any functionality, it just reorganizes the order of import statements
1 parent 7922596 commit 742dc2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_example/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ package main
1717
import (
1818
"database/sql"
1919
"fmt"
20-
"github.com/gocraft/dbr/v2"
2120
"net"
2221
"testing"
2322
"time"
2423

2524
_ "github.com/go-sql-driver/mysql"
25+
"github.com/gocraft/dbr/v2"
2626
"github.com/stretchr/testify/assert"
2727
"github.com/stretchr/testify/require"
2828
)

0 commit comments

Comments
 (0)