Skip to content

Commit

Permalink
fix testdata for Windows BK
Browse files Browse the repository at this point in the history
  • Loading branch information
bayashi committed Mar 4, 2024
1 parent 89e091e commit 589a621
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestRunner_OK(t *testing.T) {
testdata/service-b/main.go
2:
3: func main() {
4: // bar
4: bar := 34
`),
},
"service-b grep bar with C2": {
Expand All @@ -75,7 +75,7 @@ func TestRunner_OK(t *testing.T) {
1: package b
2:
3: func main() {
4: // bar
4: bar := 34
5: }
`),
},
Expand Down
2 changes: 1 addition & 1 deletion testdata/service-a/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package a

func main() {
// foo
foo := 12
}
2 changes: 1 addition & 1 deletion testdata/service-b/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package b

func main() {
// bar
bar := 34
}
2 changes: 1 addition & 1 deletion testdata/service-c/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package c

func main() {
// baz
baz := 56
}

0 comments on commit 589a621

Please sign in to comment.