| Index: tests/lib/mirrors/invocation_fuzz_test.dart
|
| diff --git a/tests/lib/mirrors/invocation_fuzz_test.dart b/tests/lib/mirrors/invocation_fuzz_test.dart
|
| index c43b5c445bcc481fd02cd2335b41249ae019a403..493c51871edb62695b91bfe1443e9d85deec3819 100644
|
| --- a/tests/lib/mirrors/invocation_fuzz_test.dart
|
| +++ b/tests/lib/mirrors/invocation_fuzz_test.dart
|
| @@ -180,10 +180,10 @@ var fuzzArgument;
|
|
|
| main() {
|
| fuzzArgument = null;
|
| - fuzzArgument = 1; // /// smi: ok
|
| - fuzzArgument = false; // /// false: ok
|
| - fuzzArgument = 'string'; // /// string: ok
|
| - fuzzArgument = new List(0); // /// emptyarray: ok
|
| + fuzzArgument = 1; // //# smi: ok
|
| + fuzzArgument = false; // //# false: ok
|
| + fuzzArgument = 'string'; // //# string: ok
|
| + fuzzArgument = new List(0); // //# emptyarray: ok
|
|
|
| print('Fuzzing with $fuzzArgument');
|
|
|
|
|