Remove remnant of Go 1.9 compatibility code from tests

This commit is contained in:
greatroar
2020-02-17 13:07:55 +01:00
parent 616f9499ae
commit 4f6fd9fb98
4 changed files with 9 additions and 25 deletions

View File

@@ -1,13 +0,0 @@
package test
import "testing"
// Helperer marks the current function as a test helper.
type Helperer interface {
Helper()
}
// Helper returns a function that marks the current function as a helper function.
func Helper(t testing.TB) Helperer {
return t
}