From 628404dc7fe6427410975f19e4a6c164d1639d8c Mon Sep 17 00:00:00 2001 From: dudaodong Date: Wed, 6 Jul 2022 10:57:45 +0800 Subject: [PATCH] fix: fix lint error --- convertor/convertor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convertor/convertor_test.go b/convertor/convertor_test.go index a83704b..4bcbb45 100644 --- a/convertor/convertor_test.go +++ b/convertor/convertor_test.go @@ -181,7 +181,7 @@ func TestColorRGBToHex(t *testing.T) { func TestToPointer(t *testing.T) { assert := internal.NewAssert(t, "TestToPointer") - result := ToPointer[int](123) + result := ToPointer(123) assert.Equal(*result, 123) }