| Index: tests/isolate/ping_test.dart
|
| diff --git a/tests/isolate/ping_test.dart b/tests/isolate/ping_test.dart
|
| index e2081894d54480c816a44a5dc029ef213d3ba320..f77c21461736f246e27d6a628be600e41fea4027 100644
|
| --- a/tests/isolate/ping_test.dart
|
| +++ b/tests/isolate/ping_test.dart
|
| @@ -48,11 +48,11 @@ void main(){
|
| };
|
| return pingPort.sendPort;
|
| }
|
| - isolate.ping(createPingPort("alive"), Isolate.PING_ALIVE);
|
| + isolate.ping(createPingPort("alive"), Isolate.OUT_OF_BAND);
|
| echoPort.send(3);
|
| - isolate.ping(createPingPort("control"), Isolate.PING_CONTROL);
|
| + isolate.ping(createPingPort("control"), Isolate.BEFORE_NEXT_EVENT);
|
| echoPort.send(2);
|
| - isolate.ping(createPingPort("event"), Isolate.PING_EVENT);
|
| + isolate.ping(createPingPort("event"), Isolate.AS_EVENT);
|
| echoPort.send(1);
|
| echoPort.send(0);
|
| });
|
|
|