From cd88893c2f20bdfd3b86b9f2a73545f09d7d426b Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Fri, 11 Sep 2020 09:55:59 -0700 Subject: [PATCH] stress_test: Fix i64/std case The i64/std case was testing with 32-bit integers instead of 64-bit integers. --- stress_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stress_test.go b/stress_test.go index 3dc7852..da9969b 100644 --- a/stress_test.go +++ b/stress_test.go @@ -37,7 +37,7 @@ const ( var _stressTests = map[string]func() func(){ "i32/std": stressStdInt32, "i32": stressInt32, - "i64/std": stressStdInt32, + "i64/std": stressStdInt64, "i64": stressInt64, "u32/std": stressStdUint32, "u32": stressUint32,