flake updates

This commit is contained in:
Robin Appelman 2025-08-07 17:02:08 +02:00
commit b1060bbb73
4 changed files with 24 additions and 24 deletions

View file

@ -13,7 +13,7 @@ use std::str::FromStr;
#[cfg(test)]
#[track_caller]
fn assert_debug_equal<T: Debug>(a: T, b: T) {
assert_eq!(format!("{:?}", a), format!("{:?}", b),);
assert_eq!(format!("{a:?}"), format!("{b:?}"),);
}
#[cfg(test)]