mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
Update hack in test_helper.dart to handle new error message.
BUG= R=johnmccutchan@google.com Review URL: https://codereview.chromium.org//1063853006 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@45379 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
parent
d9f65329c3
commit
aa1363c2af
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ bool _isWebSocketDisconnect(e) {
|
|||
if (e is! ServiceException) {
|
||||
return false;
|
||||
}
|
||||
return (e as ServiceException).message == 'WebSocket disconnected';
|
||||
return (e as ServiceException).message == 'WebSocket closed';
|
||||
}
|
||||
|
||||
// This invocation should set up the state being tested.
|
||||
|
|
Loading…
Reference in a new issue