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:
turnidge@google.com 2015-04-23 18:32:54 +00:00
parent d9f65329c3
commit aa1363c2af

View file

@ -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.