1
0
mirror of https://github.com/golang/go synced 2024-11-26 06:38:00 -07:00

fix order of imports

This commit is contained in:
Alex Bozhenko 2024-02-07 07:16:16 -08:00
parent b41219c975
commit 76bced5c48
2 changed files with 3 additions and 5 deletions

View File

@ -14,14 +14,13 @@ import (
"go/scanner" "go/scanner"
"go/token" "go/token"
"go/version" "go/version"
"internal/diff"
"io" "io"
"io/fs" "io/fs"
"os" "os"
"path/filepath" "path/filepath"
"sort" "sort"
"strings" "strings"
"internal/diff"
) )
var ( var (

View File

@ -8,11 +8,10 @@ import (
"fmt" "fmt"
"go/ast" "go/ast"
"go/parser" "go/parser"
"strings"
"testing"
"internal/diff" "internal/diff"
"internal/testenv" "internal/testenv"
"strings"
"testing"
) )
type testCase struct { type testCase struct {