summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-04-08 18:46:14 +0200
committerGitHub <noreply@github.com>2021-04-08 18:46:14 +0200
commit4e70ff80c2f630875b73c9010d959b518a977715 (patch)
treeadf2f066d97fbc997e4f501fd2de0489dee5f8f7 /cli/tests/integration_tests.rs
parentd050b491b10fe37b4461b37c56028a14c8674c95 (diff)
chore: update deps (#10058)
This commit updates crate dependencies.
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 73fdcc994..dbebd11f1 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -4717,7 +4717,9 @@ console.log("finish");
/// Returns the next websocket message as a string ignoring
/// Debugger.scriptParsed messages.
async fn ws_read_msg(
- socket: &mut tokio_tungstenite::WebSocketStream<tokio::net::TcpStream>,
+ socket: &mut tokio_tungstenite::WebSocketStream<
+ tokio_tungstenite::MaybeTlsStream<tokio::net::TcpStream>,
+ >,
) -> String {
use deno_core::futures::stream::StreamExt;
while let Some(msg) = socket.next().await {