Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 3b08ada

Browse files
committed
gomock: removes typo in Test names
1 parent 51421b9 commit 3b08ada

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gomock/controller_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,14 +720,14 @@ func TestDuplicateFinishCallFails(t *testing.T) {
720720
rep.assertFatal(ctrl.Finish, "Controller.Finish was called more than once. It has to be called exactly once.")
721721
}
722722

723-
func TestTestNoHelper(t *testing.T) {
723+
func TestNoHelper(t *testing.T) {
724724
ctrlNoHelper := gomock.NewController(NewErrorReporter(t))
725725

726726
// doesn't panic
727727
ctrlNoHelper.T.Helper()
728728
}
729729

730-
func TestTestWithHelper(t *testing.T) {
730+
func TestWithHelper(t *testing.T) {
731731
withHelper := &HelperReporter{TestReporter: NewErrorReporter(t)}
732732
ctrlWithHelper := gomock.NewController(withHelper)
733733

0 commit comments

Comments
 (0)