Fix import sequence

This commit is contained in:
Lunny Xiao 2023-10-30 09:42:31 +08:00
parent e4a88e57ed
commit d4402e7956
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 5 additions and 3 deletions

View File

@ -1,12 +1,14 @@
package xorm package xorm
import ( import (
"sort"
"testing"
"xorm.io/builder"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"sort"
"testing"
"xorm.io/builder"
) )
// https://gitea.com/xorm/xorm/issues/2240 // https://gitea.com/xorm/xorm/issues/2240