| Index: tests/lib_strong/html/websocket_test.dart
|
| diff --git a/tests/lib_strong/html/websocket_test.dart b/tests/lib_strong/html/websocket_test.dart
|
| index 1715c884def1573c7c4dd8ab0c29342256f71d2c..73b78ca55f9f44837e22c4a54fe581150e435ea3 100644
|
| --- a/tests/lib_strong/html/websocket_test.dart
|
| +++ b/tests/lib_strong/html/websocket_test.dart
|
| @@ -1,10 +1,10 @@
|
| library WebSocketTest;
|
| +
|
| import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_individual_config.dart';
|
| import 'dart:html';
|
|
|
| main() {
|
| -
|
| useHtmlIndividualConfiguration();
|
|
|
| group('supported', () {
|
| @@ -22,7 +22,7 @@ main() {
|
| var socket = new WebSocket('ws://localhost/ws', 'chat');
|
| expect(socket, isNotNull);
|
| expect(socket, isWebSocket);
|
| - }, expectation);
|
| + }, expectation);
|
| });
|
|
|
| if (WebSocket.supported) {
|
|
|