Format with rustfmt 2020-04-21

This commit is contained in:
David Tolnay
2020-05-30 12:06:00 -07:00
parent 80f4a91c17
commit fe0595fe6d
+4 -1
View File
@@ -135,6 +135,9 @@ mod tests {
#[test]
fn test_double_to_bits() {
assert_eq!(0, 0.0_f64.to_bits());
assert_eq!(0x400921FB54442D18, 3.1415926535897932384626433_f64.to_bits());
assert_eq!(
0x400921FB54442D18,
3.1415926535897932384626433_f64.to_bits(),
);
}
}