Skip to content

Commit 36f95cd

Browse files
Fix formatting
1 parent 4df0fd3 commit 36f95cd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cmd/go-mutesting/main.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ type options struct {
6868
} `group:"Exec options"`
6969

7070
Test struct {
71-
Recursive bool `long:"test-recursive" description:"Defines if the executer should test recursively"`
71+
Recursive bool `long:"test-recursive" description:"Defines if the executer should test recursively"`
7272
BuildTags []string `long:"build-tags" description:"Supplies additional go build tags"`
7373
} `group:"Test options"`
7474

@@ -424,7 +424,7 @@ func mutateExec(opts *options, pkg *types.Package, file string, mutationFile str
424424
}
425425

426426
if len(opts.Test.BuildTags) != 0 {
427-
buildTags := "-tags=" + strings.Join(opts.Test.BuildTags, ",")
427+
buildTags := "-tags=" + strings.Join(opts.Test.BuildTags, ",")
428428
args = append(args, buildTags)
429429
}
430430

@@ -479,8 +479,6 @@ func mutateExec(opts *options, pkg *types.Package, file string, mutationFile str
479479

480480
var buildTags string
481481

482-
483-
484482
execCommand.Env = append(os.Environ(), []string{
485483
"MUTATE_CHANGED=" + mutationFile,
486484
fmt.Sprintf("MUTATE_DEBUG=%t", opts.General.Debug),

0 commit comments

Comments
 (0)