From 01e3c0fe542bdf0eb244de6ddbcb8bc9e1e83d9a Mon Sep 17 00:00:00 2001 From: Rostyslav Tyshko Date: Fri, 2 May 2025 17:28:14 -0400 Subject: [PATCH] fmt --- sc_core/src/private_state.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sc_core/src/private_state.rs b/sc_core/src/private_state.rs index 272254c7..8f639de9 100644 --- a/sc_core/src/private_state.rs +++ b/sc_core/src/private_state.rs @@ -316,6 +316,9 @@ mod tests { let state = PrivateSCState::new(); let result = read_num_bytes_start(&state, PRIVATE_BLOB_SIZE * 2); - assert!(matches!(result, Err(PrivateStateError::ReadSizeMismatch(_, _)))); + assert!(matches!( + result, + Err(PrivateStateError::ReadSizeMismatch(_, _)) + )); } }