fix: fmt in data generator field

pull/24376/head
Paul Dix 2021-08-19 15:17:22 -04:00
parent be6ac694a5
commit 7c401fbf28
1 changed files with 3 additions and 1 deletions

View File

@ -567,7 +567,9 @@ mod test {
// All the values generated will always be the same known value.
assert!(
f64_fields.iter().all(|f| approximately_equal(*f, start_and_end)),
f64_fields
.iter()
.all(|f| approximately_equal(*f, start_and_end)),
"{:?}",
f64_fields
);