Skip to content

Commit

Permalink
Merge pull request #841 from tsbkw/fix/conform-to-go-test-naming-conv…
Browse files Browse the repository at this point in the history
…ention

fix: Conform to go test naming convention
  • Loading branch information
dhui committed Dec 6, 2022
2 parents b63177a + a7f9122 commit c9ff76f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testing/testing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import (
"testing"
)

func ExampleParallelTest(t *testing.T) { // nolint:govet
func ExampleParallelTest() {
t := &testing.T{} // Should actually be used in a Test

var isReady = func(i Instance) bool {
// Return true if Instance is ready to run tests.
// Don't block here though.
Expand Down

0 comments on commit c9ff76f

Please sign in to comment.