diff --git a/sql/expression/function/json/json_function_tests.go b/sql/expression/function/json/json_function_tests.go index bbe224c34f..02015077aa 100644 --- a/sql/expression/function/json/json_function_tests.go +++ b/sql/expression/function/json/json_function_tests.go @@ -16,14 +16,15 @@ package json import ( "fmt" - "github.com/dolthub/go-mysql-server/sql" - "github.com/dolthub/go-mysql-server/sql/expression" - "github.com/dolthub/go-mysql-server/sql/types" - "github.com/stretchr/testify/require" "strconv" - "strings" "testing" + + "github.com/stretchr/testify/require" + + "github.com/dolthub/go-mysql-server/sql" + "github.com/dolthub/go-mysql-server/sql/expression" + "github.com/dolthub/go-mysql-server/sql/types" ) type prepareJsonValue = func(*testing.T, string) interface{} diff --git a/sql/expression/function/json/json_insert_test.go b/sql/expression/function/json/json_insert_test.go index bd7711ee7e..18095537bf 100644 --- a/sql/expression/function/json/json_insert_test.go +++ b/sql/expression/function/json/json_insert_test.go @@ -15,10 +15,12 @@ package json import ( - "github.com/dolthub/go-mysql-server/sql" + "testing" + "github.com/stretchr/testify/require" "gopkg.in/src-d/go-errors.v1" - "testing" + + "github.com/dolthub/go-mysql-server/sql" ) func TestInsert(t *testing.T) {