update linter

This commit is contained in:
andrey
2025-11-21 11:58:20 +03:00
parent 22dacb741f
commit 72ef747541
25 changed files with 156 additions and 144 deletions

View File

@@ -2,7 +2,7 @@ package assert
import "testing"
func Nil(t *testing.T, data any, msgAndArgs ...interface{}) bool {
func Nil(t *testing.T, data any, msgAndArgs ...any) bool {
t.Helper()
if data != nil {