Format with rustfmt 1.4.27-nightly

This commit is contained in:
David Tolnay 2020-11-22 12:05:51 -08:00
parent 09a3086b45
commit 8988a75049
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -18,7 +18,11 @@ macro_rules! check {
($run:expr) => {{
CORRECT.with(|correct| correct.set(false));
$run;
assert!(CORRECT.with(|correct| correct.get()), "{}", stringify!($run));
assert!(
CORRECT.with(|correct| correct.get()),
"{}",
stringify!($run),
);
}};
}