Skip to content

Commit 7ad874b

Browse files
author
elgris
committed
- removed unused test case
- fixed tests, introduced config there with which Linter reacts on all kind of errors
1 parent 18ecbc8 commit 7ad874b

File tree

2 files changed

+5
-39
lines changed

2 files changed

+5
-39
lines changed

lint_test.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ func TestAll(t *testing.T) {
5252
continue
5353
}
5454

55-
ps, err := l.Lint(fi.Name(), src)
55+
config := NewDefaultConfig()
56+
config.MinConfidence = 0 // do not ignore any errors because of confidence threshold
57+
ps, err := l.Lint(fi.Name(), config, src)
5658
if err != nil {
5759
t.Errorf("Linting %s: %v", fi.Name(), err)
5860
continue
@@ -188,8 +190,9 @@ func TestLintName(t *testing.T) {
188190
{"a___b", "aB"},
189191
{"Rpc1150", "RPC1150"},
190192
}
193+
f := file{config: NewDefaultConfig()}
191194
for _, test := range tests {
192-
got := lintName(test.name)
195+
got := f.fixName(test.name)
193196
if got != test.want {
194197
t.Errorf("lintName(%q) = %q, want %q", test.name, got, test.want)
195198
}

testdata/ignored-return-error.go

-37
This file was deleted.

0 commit comments

Comments
 (0)