Skip to content

Commit

Permalink
Format with rustfmt 1.4.38
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Nov 22, 2021
1 parent b75dcd2 commit 6f3b70e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_ensure.rs
Expand Up @@ -376,7 +376,10 @@ fn test_whitespace() {

let point = Point { x: 0, y: 0 };
let test = || Ok(ensure!("" == format!("{:#?}", point)));
assert_err(test, "Condition failed: `\"\" == format!(\"{:#?}\", point)`");
assert_err(
test,
"Condition failed: `\"\" == format!(\"{:#?}\", point)`",
);
}

#[test]
Expand Down

0 comments on commit 6f3b70e

Please sign in to comment.