diff options
author | 2022-07-10 20:06:33 +0200 | |
---|---|---|
committer | 2022-07-10 11:06:33 -0700 | |
commit | c2dbb7141a7c95aa521a41b27bed3af25de8f546 (patch) | |
tree | 3af5d63a0dccaa769507e34a32b6378ccef880c4 /test | |
parent | abc5ac8017b0f434b5845321fb1f405ded7774d4 (diff) | |
download | coredns-c2dbb7141a7c95aa521a41b27bed3af25de8f546.tar.gz coredns-c2dbb7141a7c95aa521a41b27bed3af25de8f546.tar.zst coredns-c2dbb7141a7c95aa521a41b27bed3af25de8f546.zip |
add golangci-lint linter (#5499)
Diffstat (limited to 'test')
-rw-r--r-- | test/file_loop_test.go | 1 | ||||
-rw-r--r-- | test/grpc_test.go | 3 | ||||
-rw-r--r-- | test/metric_naming_test.go | 1 | ||||
-rw-r--r-- | test/presubmit_test.go | 1 | ||||
-rw-r--r-- | test/readme_test.go | 1 | ||||
-rw-r--r-- | test/secondary_test.go | 1 |
6 files changed, 2 insertions, 6 deletions
diff --git a/test/file_loop_test.go b/test/file_loop_test.go index daebb7088..2452cc056 100644 --- a/test/file_loop_test.go +++ b/test/file_loop_test.go @@ -44,6 +44,5 @@ func TestFileLoop(t *testing.T) { // For now: document current behavior in this test. if r.Rcode != dns.RcodeServerFailure { t.Errorf("Rcode should be dns.RcodeServerFailure: %d", r.Rcode) - } } diff --git a/test/grpc_test.go b/test/grpc_test.go index 55395758d..37504c930 100644 --- a/test/grpc_test.go +++ b/test/grpc_test.go @@ -9,6 +9,7 @@ import ( "github.com/miekg/dns" "google.golang.org/grpc" + "google.golang.org/grpc/credentials/insecure" ) func TestGrpc(t *testing.T) { @@ -24,7 +25,7 @@ func TestGrpc(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) defer cancel() - conn, err := grpc.DialContext(ctx, tcp, grpc.WithInsecure(), grpc.WithBlock()) + conn, err := grpc.DialContext(ctx, tcp, grpc.WithTransportCredentials(insecure.NewCredentials()), grpc.WithBlock()) if err != nil { t.Fatalf("Expected no error but got: %s", err) } diff --git a/test/metric_naming_test.go b/test/metric_naming_test.go index e8aa585c1..7fcfee527 100644 --- a/test/metric_naming_test.go +++ b/test/metric_naming_test.go @@ -18,7 +18,6 @@ import ( ) func TestMetricNaming(t *testing.T) { - walker := validMetricWalker{} err := filepath.Walk("..", walker.walk) diff --git a/test/presubmit_test.go b/test/presubmit_test.go index b94beb31b..79f612732 100644 --- a/test/presubmit_test.go +++ b/test/presubmit_test.go @@ -158,7 +158,6 @@ func (l logfmt) Visit(n ast.Node) ast.Visitor { for i, u := range bl.Value { // disregard " if i == 1 && !unicode.IsUpper(u) { - l.err = fmt.Errorf("test error message %s doesn't start with an uppercase", bl.Value) return nil } if i == 1 { diff --git a/test/readme_test.go b/test/readme_test.go index bc79f7465..4012a2154 100644 --- a/test/readme_test.go +++ b/test/readme_test.go @@ -167,7 +167,6 @@ func sectionsFromReadme(readme string) error { return fmt.Errorf("Sections incomplete or ordered wrong: %q, want (at least): Name, Descripion, Syntax and Examples", readme) } return nil - } func create(c map[string]string) { diff --git a/test/secondary_test.go b/test/secondary_test.go index c60aa0355..8e99f0da0 100644 --- a/test/secondary_test.go +++ b/test/secondary_test.go @@ -214,5 +214,4 @@ www IN AAAA ::1 return } } - } |