| Index: tests/lib/math/random_secure_test.dart
|
| diff --git a/tests/lib/math/random_secure_test.dart b/tests/lib/math/random_secure_test.dart
|
| index cb3bf4f38e46c08548522067213023b641cf112d..33a563ef45f9a4aedc59755eb174fbedb0ebd694 100644
|
| --- a/tests/lib/math/random_secure_test.dart
|
| +++ b/tests/lib/math/random_secure_test.dart
|
| @@ -30,8 +30,8 @@ main() {
|
| rng0 = new Random.secure();
|
| for(var i = 0; i <= 32; i++) {
|
| rng1 = new Random.secure();
|
| - checkInt(1 << 32);
|
| - checkInt(1 << (32 - i));
|
| + checkInt(pow(2, 32));
|
| + checkInt(pow(2, 32 - i));
|
| checkInt(1000000000);
|
| }
|
| var checkDouble = () {
|
|
|