aboutsummaryrefslogtreecommitdiff
path: root/src/testing/helperfuncs_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/helperfuncs_test.go')
-rw-r--r--src/testing/helperfuncs_test.go18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/testing/helperfuncs_test.go b/src/testing/helperfuncs_test.go
index 7cb2e2cc56..f2d54b3a99 100644
--- a/src/testing/helperfuncs_test.go
+++ b/src/testing/helperfuncs_test.go
@@ -41,17 +41,19 @@ func testHelper(t *T) {
}
fn("4")
- // Check that calling Helper from inside this test entry function
- // doesn't have an effect.
- t.Helper()
- t.Error("5")
-
t.Run("sub", func(t *T) {
- helper(t, "6")
- notHelperCallingHelper(t, "7")
+ helper(t, "5")
+ notHelperCallingHelper(t, "6")
+ // Check that calling Helper from inside a subtest entry function
+ // works as if it were in an ordinary function call.
t.Helper()
- t.Error("8")
+ t.Error("7")
})
+
+ // Check that calling Helper from inside a top-level test function
+ // has no effect.
+ t.Helper()
+ t.Error("8")
}
func parallelTestHelper(t *T) {