go-advanced icon indicating copy to clipboard operation
go-advanced copied to clipboard

fix(confusions): rename invalid interface testing.TB to TB

Open huantt opened this issue 1 year ago • 0 comments

type testing.TB interface {
   ...
}

is invalid syntax.

Fix

package testing

type TB interface {
   ...
}

huantt avatar Dec 18 '23 09:12 huantt