We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c367ed2 commit 41f3495Copy full SHA for 41f3495
testing/testing_test.go
@@ -4,7 +4,9 @@ import (
4
"testing"
5
)
6
7
-func ExampleParallelTest(t *testing.T) { // nolint:govet
+func ExampleParallelTest() {
8
+ t := &testing.T{} // Should actually be used in a Test
9
+
10
var isReady = func(i Instance) bool {
11
// Return true if Instance is ready to run tests.
12
// Don't block here though.
0 commit comments