File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ void main() {
12
12
Completer <dynamic > completer = Completer <dynamic >();
13
13
config.Settings configuration = config.Settings ();
14
14
configuration.sockets = < WebSocketInterface > [
15
- WebSocketInterface ('ws://127.0.0.1:5070/sip' )
15
+ WebSocketInterface ('ws://127.0.0.1:5070/sip' , messageDelay : 0 )
16
16
];
17
17
configuration.authorization_user = '100' ;
18
18
configuration.password = '100' ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ List<void Function()> testFunctions = <void Function()>[
29
29
});
30
30
31
31
WebSocketInterface client =
32
- WebSocketInterface ('ws://127.0.0.1:4040/sip' );
32
+ WebSocketInterface ('ws://127.0.0.1:4040/sip' , messageDelay : 0 );
33
33
34
34
expect (client.url, 'ws://127.0.0.1:4040/sip' );
35
35
expect (client.via_transport, 'WS' );
@@ -77,7 +77,7 @@ List<void Function()> testFunctions = <void Function()>[
77
77
}
78
78
});
79
79
WebSocketInterface socket =
80
- WebSocketInterface ('ws://127.0.0.1:4041/sip' );
80
+ WebSocketInterface ('ws://127.0.0.1:4041/sip' , messageDelay : 0 );
81
81
Transport trasnport = Transport (< WebSocketInterface > [socket]);
82
82
83
83
trasnport.onconnecting = (WebSocketInterface ? socket, int ? attempt) {
You can’t perform that action at this time.
0 commit comments