Skip to content

Commit

Permalink
fix(core): remove unnecessary hashes around raw string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Oct 5, 2023
1 parent 299cfe9 commit eeb9900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viz-core/tests/body.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async fn outgoing_body() -> Result<()> {
let size_hint = boxed.size_hint();
assert_eq!(size_hint.lower(), 0);
assert_eq!(size_hint.upper(), Some(0));
assert_eq!(&format!("{boxed:?}"), r#"Boxed(BoxBody)"#);
assert_eq!(&format!("{boxed:?}"), r"Boxed(BoxBody)");
assert!(boxed.frame().await.is_none());

let mut boxed: OutgoingBody =
Expand All @@ -191,7 +191,7 @@ async fn outgoing_body() -> Result<()> {
let size_hint = boxed.size_hint();
assert_eq!(size_hint.lower(), 4);
assert_eq!(size_hint.upper(), Some(4));
assert_eq!(&format!("{boxed:?}"), r#"Boxed(BoxBody)"#);
assert_eq!(&format!("{boxed:?}"), r"Boxed(BoxBody)");
assert_eq!(
boxed
.frame()
Expand Down

0 comments on commit eeb9900

Please sign in to comment.