Fix formatting to rustfmt standards.

This commit is contained in:
2021-11-14 13:50:25 -08:00
parent f4755e9b37
commit 4df1173ecb

View File

@@ -1444,7 +1444,9 @@ mod tests {
fn utc_time_tests() { fn utc_time_tests() {
// Check for a regression against issue #27, in which this would // Check for a regression against issue #27, in which this would
// cause a panic. // cause a panic.
let input = [55, 13, 13, 133, 13, 13, 50, 13, 13, 133, 13, 13, 50, 13, 133]; let input = [
55, 13, 13, 133, 13, 13, 50, 13, 13, 133, 13, 13, 50, 13, 133,
];
let output = from_der(&input); let output = from_der(&input);
assert!(output.is_err()); assert!(output.is_err());
} }