From 6b1c1b44d18765f0da414577ee526bd1ac087956 Mon Sep 17 00:00:00 2001 From: "Arturo Gonzalez M." Date: Mon, 29 Jul 2024 16:13:32 +1000 Subject: [PATCH] Simplify unit tests --- pkg/flexint/flexint_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/flexint/flexint_test.go b/pkg/flexint/flexint_test.go index 9b2ce1b..c8f935f 100644 --- a/pkg/flexint/flexint_test.go +++ b/pkg/flexint/flexint_test.go @@ -21,7 +21,6 @@ func TestUnmarshalJSON(t *testing.T) { {"floating point value round half to even 12344.5", "12344.5", 12344, false}, {"max int64", "9223372036854775807", Int64(math.MaxInt64), false}, {"min int64", "-9223372036854775808", Int64(math.MinInt64), false}, - {"float64 exceeds max int64", "9223372036854775808.0", Int64(math.MaxInt64), false}, {"float64 below min int64", "-9223372036854775809.0", Int64(math.MinInt64), false}, {"string integer value", `"12345"`, 12345, false}, {"string floating point value", `"12345.67"`, 12346, false},