Skip to content

Commit

Permalink
test: fixed e2e_test_utils for new enum
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed Dec 12, 2024
1 parent 445bb02 commit 6aca4bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/at_end2end_test/test/e2e_test_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ Future<SimpleOutboundSocketHandler> getSocketHandler(atSign) async {
break;
case _ConnectionTypeEnum.websocket:
// TODO e.g. handler = SimpleOutboundWebsocketConnection._(asc.host, asc.port, atSign);
throw UnimplementedError('e2e_test_utils cannot yet create a websocket connection');
handler = SimpleOutboundSocketHandler._(asc.host, asc.port, atSign);
break;
}

await handler.connect();
Expand Down

0 comments on commit 6aca4bd

Please sign in to comment.