Skip to content

Commit 58db674

Browse files
committed
Add an empty line between functions in the testfile
1 parent fb6efb3 commit 58db674

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

mage/testdata/racy_deps/magefile.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build mage
12
// +build mage
23

34
package main
@@ -26,6 +27,7 @@ func Test3() error {
2627
fmt.Println("execute test3")
2728
return nil
2829
}
30+
2931
func Test4() error {
3032
mg.Deps(Test1, Test2, Test3)
3133
fmt.Println("execute test4")

mg/deps.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package mg
22

33
import (
44
"context"
5+
"fmt"
56
"log"
67
"os"
78
"reflect"

0 commit comments

Comments
 (0)