Skip to content

Commit c4ba66d

Browse files
committed
tests: multiple fixes
1 parent 0dbb927 commit c4ba66d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/testdata/fix/in/multiple-issues-fix.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//golangcitest:args -Egocritic,gofumpt
1+
//golangcitest:args -Egofumpt,misspell
22
//golangcitest:config_path testdata/configs/multiple-issues-fix.yml
33
//golangcitest:expected_exitcode 0
44
package p
@@ -8,4 +8,5 @@ import "fmt"
88
func main() {
99
//standard greeting
1010
fmt.Println("hello world")
11+
// langauge
1112
}

test/testdata/fix/out/multiple-issues-fix.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//golangcitest:args -Egocritic,gofumpt
1+
//golangcitest:args -Egofumpt,misspell
22
//golangcitest:config_path testdata/configs/multiple-issues-fix.yml
33
//golangcitest:expected_exitcode 0
44
package p
@@ -8,4 +8,5 @@ import "fmt"
88
func main() {
99
// standard greeting
1010
fmt.Println("hello world")
11+
// language
1112
}

0 commit comments

Comments
 (0)