go-advanced
go-advanced copied to clipboard
fix(confusions): rename invalid interface testing.TB to TB
type testing.TB interface {
...
}
is invalid syntax.
Fix
package testing
type TB interface {
...
}