Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
dissident
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Sep 3, 2019
1 parent 2e1702c commit 7549289
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkging/pkgtest/suite.go
Expand Up @@ -46,8 +46,7 @@ func (s Suite) Test(t *testing.T) {
}

func (s Suite) sub(t *testing.T, m reflect.Method) {
name := strings.TrimPrefix(m.Name, "Test_")
name = fmt.Sprintf("%T_%s", s.Pkger, name)
name := fmt.Sprintf("%T/%s", s.Pkger, m.Name)
t.Run(name, func(st *testing.T) {
defer func() {
if err := recover(); err != nil {
Expand Down

0 comments on commit 7549289

Please sign in to comment.