From 2f098de32fb5a67f8835d306b396e8db5db35e39 Mon Sep 17 00:00:00 2001 From: Elias Naur <103319121+elias-orijtech@users.noreply.github.com> Date: Thu, 14 Sep 2023 15:51:42 -0500 Subject: [PATCH] chore: add failing test for math.Int.Size (#17747) Co-authored-by: Julien Robert --- math/int_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/math/int_test.go b/math/int_test.go index 4da1cae423..f6c476410f 100644 --- a/math/int_test.go +++ b/math/int_test.go @@ -546,6 +546,7 @@ var sizeTests = []struct { {"9999999999999", 13}, {"99999999999999", 14}, {"999999999999999", 15}, + {"1000000000000000", 16}, {"9999999999999999", 16}, {"99999999999999999", 17}, {"999999999999999999", 18},