Skip to content

Commit bd9e64d

Browse files
Format Rust code using rustfmt
1 parent c63b19b commit bd9e64d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,15 @@ fn test_bitfield_serde() {
6060
#[test]
6161
fn test_valid_compat_serde_psp_entry_source_value_deserialization() {
6262
let json = "123";
63-
let _result = serde_json::from_str::<SerdePspEntrySourceValue>(json).unwrap();
63+
let _result =
64+
serde_json::from_str::<SerdePspEntrySourceValue>(json).unwrap();
6465
}
6566

6667
#[test]
6768
fn test_valid_serde_psp_entry_source_value_deserialization() {
6869
let json = r#"{"PspSoftFuseChain": {"early_secure_debug_unlock": true, "spi_decoding": "LowerHalf", "postcode_decoding": "Lpc"}}"#;
69-
let _result = serde_json::from_str::<SerdePspEntrySourceValue>(json).unwrap();
70+
let _result =
71+
serde_json::from_str::<SerdePspEntrySourceValue>(json).unwrap();
7072
}
7173

7274
#[test]

0 commit comments

Comments
 (0)