Update integer_test.go

This commit is contained in:
Gengar 2025-09-18 01:52:42 +03:00 committed by GitHub
parent 6492751355
commit 3d391da4af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -110,7 +110,7 @@ func TestMustParseUint64(t *testing.T) {
func TestMustParseUint64Panic(t *testing.T) { func TestMustParseUint64Panic(t *testing.T) {
defer func() { defer func() {
if recover() == nil { if recover() == nil {
t.Error("MustParseBig should've panicked") t.Error("MustParseUint64 should've panicked")
} }
}() }()
MustParseUint64("ggg") MustParseUint64("ggg")