Skip to content

Commit c9ff76f

Browse files
authored
Merge pull request #841 from tsbkw/fix/conform-to-go-test-naming-convention
fix: Conform to go test naming convention
2 parents b63177a + a7f9122 commit c9ff76f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testing/testing_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import (
44
"testing"
55
)
66

7-
func ExampleParallelTest(t *testing.T) { // nolint:govet
7+
func ExampleParallelTest() {
8+
t := &testing.T{} // Should actually be used in a Test
9+
810
var isReady = func(i Instance) bool {
911
// Return true if Instance is ready to run tests.
1012
// Don't block here though.

0 commit comments

Comments
 (0)