From fd136b8a23ee12a0a9e8eb2c7b89e5df7cc9fae9 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Sun, 18 Aug 2024 21:40:25 +0200 Subject: [PATCH] lint :lipstick: --- type_manipulation_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/type_manipulation_test.go b/type_manipulation_test.go index b9971905..3a63013d 100644 --- a/type_manipulation_test.go +++ b/type_manipulation_test.go @@ -25,7 +25,7 @@ func TestIsNil(t *testing.T) { var b *bool is.True(IsNil(b)) - var ifaceWithNilValue any = (*string)(nil) + var ifaceWithNilValue any = (*string)(nil) //nolint:staticcheck is.True(IsNil(ifaceWithNilValue)) is.False(ifaceWithNilValue == nil) //nolint:staticcheck }