From b49df9d34edd41be1e805ba2626fbefcaffba3de Mon Sep 17 00:00:00 2001 From: "Daniel G. Taylor" Date: Thu, 4 Jan 2024 21:49:46 -0800 Subject: [PATCH] fix: linter --- registry_test.go | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/registry_test.go b/registry_test.go index 457488ee..38109af0 100644 --- a/registry_test.go +++ b/registry_test.go @@ -9,18 +9,11 @@ import ( "github.com/stretchr/testify/assert" ) -type Output[T any] struct { - data T -} +type Output[T any] struct{} -type Embedded[P any] struct { - data P -} +type Embedded[P any] struct{} -type EmbeddedTwo[P, V any] struct { - data P - second V -} +type EmbeddedTwo[P, V any] struct{} type S struct{}