Skip to content

Commit a63e479

Browse files
committed
go fmt
1 parent 324f6e5 commit a63e479

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

util/tap.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
// Package tap provides support for automated Test Anything Protocol ("TAP")
22
// tests in Go. For example:
33
//
4-
// package main
4+
// package main
55
//
6-
// import "github.com/mndrix/tap-go"
6+
// import "github.com/mndrix/tap-go"
77
//
8-
// func main() {
9-
// t := tap.New()
10-
// t.Header(2)
11-
// t.Ok(true, "first test")
12-
// t.Ok(true, "second test")
13-
// }
8+
// func main() {
9+
// t := tap.New()
10+
// t.Header(2)
11+
// t.Ok(true, "first test")
12+
// t.Ok(true, "second test")
13+
// }
1414
//
1515
// generates the following output
1616
//
17-
// TAP version 13
18-
// 1..2
19-
// ok 1 - first test
20-
// ok 2 - second test
17+
// TAP version 13
18+
// 1..2
19+
// ok 1 - first test
20+
// ok 2 - second test
2121
package tap // import "github.com/mndrix/tap-go"
2222

2323
import (

0 commit comments

Comments
 (0)