Skip to content

Commit

Permalink
stress_test: Fix i64/std case
Browse files Browse the repository at this point in the history
The i64/std case was testing with 32-bit integers instead of 64-bit
integers.
  • Loading branch information
abhinav committed Sep 11, 2020
1 parent f64e592 commit cd88893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit cd88893

Please sign in to comment.