Skip to content

Commit fd136b8

Browse files
committed
lint 💄
1 parent f3ee53b commit fd136b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

type_manipulation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func TestIsNil(t *testing.T) {
2525
var b *bool
2626
is.True(IsNil(b))
2727

28-
var ifaceWithNilValue any = (*string)(nil)
28+
var ifaceWithNilValue any = (*string)(nil) //nolint:staticcheck
2929
is.True(IsNil(ifaceWithNilValue))
3030
is.False(ifaceWithNilValue == nil) //nolint:staticcheck
3131
}

0 commit comments

Comments
 (0)