| Index: tests/isolate/browser/typed_data_message_test.dart
|
| diff --git a/tests/isolate/browser/typed_data_message_test.dart b/tests/isolate/browser/typed_data_message_test.dart
|
| index e4483903b00d4fac6eb8fdeddb796281f2adcae3..9432290ff029422fbe04e09b834392ebed2b1507 100644
|
| --- a/tests/isolate/browser/typed_data_message_test.dart
|
| +++ b/tests/isolate/browser/typed_data_message_test.dart
|
| @@ -66,7 +66,7 @@ pingPong(SendPort initialReplyTo) {
|
| SendPort replyTo = message[1];
|
| if (data == -1) {
|
| port.close();
|
| - replyTo.send(count, null);
|
| + replyTo.send(count);
|
| } else {
|
| // Check if the received object is correct.
|
| if (count < elements.length) {
|
| @@ -74,7 +74,7 @@ pingPong(SendPort initialReplyTo) {
|
| }
|
| // Bounce the received object back so that the sender
|
| // can make sure that the object matches.
|
| - replyTo.send(data, null);
|
| + replyTo.send(data);
|
| count++;
|
| }
|
| });
|
|
|