Update tokio-tungstenite crate from 0.25 to 0.26 version (#1299)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
This commit is contained in:
dependabot[bot] 2024-12-18 16:35:36 +00:00 committed by GitHub
parent dde5fcc9b5
commit a925ccb193
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ futures = "0.3.22"
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
tokio = { version = "1.20", features = ["macros", "net", "rt-multi-thread", "time"] }
tokio-stream = "0.1"
tokio-tungstenite = "0.25"
tokio-tungstenite = "0.26"
tower-service = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"

View file

@ -88,7 +88,7 @@ impl TestApp {
None => Err(anyhow!("No message received")),
Some(Err(e)) => Err(anyhow!("WebSocket error: {e}")),
Some(Ok(Message::Text(json))) => {
let actual: serde_json::Value = serde_json::from_str(json.as_str())
let actual: serde_json::Value = serde_json::from_str(&*json)
.map_err(|e| anyhow!("Cannot deserialize received message: {e}"))?;
if actual != expected {
return Err(anyhow!(
@ -101,7 +101,7 @@ impl TestApp {
Some(Ok(Message::Close(Some(frame)))) => {
let actual = serde_json::json!({
"code": u16::from(frame.code),
"description": frame.reason,
"description": *frame.reason,
});
if actual != expected {
return Err(anyhow!(