| Index: test/dart_codegen/expect/math/random.dart
|
| diff --git a/test/dart_codegen/expect/math/random.dart b/test/dart_codegen/expect/math/random.dart
|
| index 3b6faa2f22e0995863b1e24d57177f54f06a0825..00a05ba7d16fb80edf37e72ff7580dfe651bbd6c 100644
|
| --- a/test/dart_codegen/expect/math/random.dart
|
| +++ b/test/dart_codegen/expect/math/random.dart
|
| @@ -1,7 +1,7 @@
|
| part of dart.math;
|
|
|
| abstract class Random {
|
| - @patch factory Random([int seed]) =>
|
| + factory Random([int seed]) =>
|
| (seed == null) ? const _JSRandom() : new _Random(seed);
|
| int nextInt(int max);
|
| double nextDouble();
|
|
|