mirror of
https://github.com/golang/go
synced 2024-11-19 03:04:42 -07:00
5744cfde56
We shouldn't apply formatting fixes when we are organizing imports. Fixes golang/go#38412 Change-Id: I082f4d9a7d1d1dd571304733c287b0d5e90ea448 Reviewed-on: https://go-review.googlesource.com/c/tools/+/228264 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
27 lines
754 B
Go
27 lines
754 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cmdtest
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"golang.org/x/tools/internal/lsp/diff"
|
|
"golang.org/x/tools/internal/lsp/diff/myers"
|
|
"golang.org/x/tools/internal/span"
|
|
)
|
|
|
|
func (r *runner) Import(t *testing.T, spn span.Span) {
|
|
uri := spn.URI()
|
|
filename := uri.Filename()
|
|
got, _ := r.NormalizeGoplsCmd(t, "imports", filename)
|
|
want := string(r.data.Golden("goimports", filename, func() ([]byte, error) {
|
|
return []byte(got), nil
|
|
}))
|
|
if want != got {
|
|
d := myers.ComputeEdits(uri, want, got)
|
|
t.Errorf("imports failed for %s, expected:\n%s", filename, diff.ToUnified("want", "got", want, d))
|
|
}
|
|
}
|