From d4402e79567929dc626e357e62ee178cf8138041 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 30 Oct 2023 09:42:31 +0800 Subject: [PATCH] Fix import sequence --- preload_test.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/preload_test.go b/preload_test.go index ba94f2a5..0b3892f1 100644 --- a/preload_test.go +++ b/preload_test.go @@ -1,12 +1,14 @@ package xorm import ( + "sort" + "testing" + + "xorm.io/builder" + _ "github.com/mattn/go-sqlite3" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "sort" - "testing" - "xorm.io/builder" ) // https://gitea.com/xorm/xorm/issues/2240