Remove raw string hashes (#3071)

This commit is contained in:
Hamir Mahal 2024-12-08 17:49:09 -08:00 committed by GitHub
parent 7c871e9591
commit fd11d8efde
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -949,7 +949,7 @@ mod tests {
let body = res.text().await; let body = res.text().await;
assert_eq!( assert_eq!(
body, body,
r#"Invalid URL: Cannot parse `res` with value `123123-123-123123`: UUID parsing failed: invalid group count: expected 5, found 3"# "Invalid URL: Cannot parse `res` with value `123123-123-123123`: UUID parsing failed: invalid group count: expected 5, found 3"
); );
} }
@ -970,7 +970,7 @@ mod tests {
let body = res.text().await; let body = res.text().await;
assert_eq!( assert_eq!(
body, body,
r#"Invalid URL: Cannot parse `res` with value `456456-123-456456`: UUID parsing failed: invalid group count: expected 5, found 3"# "Invalid URL: Cannot parse `res` with value `456456-123-456456`: UUID parsing failed: invalid group count: expected 5, found 3"
); );
} }
@ -992,6 +992,6 @@ mod tests {
let client = TestClient::new(app); let client = TestClient::new(app);
let res = client.get("/te/st/_thing").await; let res = client.get("/te/st/_thing").await;
let body = res.text().await; let body = res.text().await;
assert_eq!(body, r#"Invalid URL: array types are not supported"#); assert_eq!(body, "Invalid URL: array types are not supported");
} }
} }