We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63b19b commit bd9e64dCopy full SHA for bd9e64d
src/main.rs
@@ -60,13 +60,15 @@ fn test_bitfield_serde() {
60
#[test]
61
fn test_valid_compat_serde_psp_entry_source_value_deserialization() {
62
let json = "123";
63
- let _result = serde_json::from_str::<SerdePspEntrySourceValue>(json).unwrap();
+ let _result =
64
+ serde_json::from_str::<SerdePspEntrySourceValue>(json).unwrap();
65
}
66
67
68
fn test_valid_serde_psp_entry_source_value_deserialization() {
69
let json = r#"{"PspSoftFuseChain": {"early_secure_debug_unlock": true, "spi_decoding": "LowerHalf", "postcode_decoding": "Lpc"}}"#;
70
71
72
73
74
0 commit comments