diff --git a/rpc_sidecar/src/rpcs/info.rs b/rpc_sidecar/src/rpcs/info.rs index dc0f88bd..72973459 100644 --- a/rpc_sidecar/src/rpcs/info.rs +++ b/rpc_sidecar/src/rpcs/info.rs @@ -550,7 +550,10 @@ mod tests { let json_value = serde_json::to_value(&result).unwrap(); - assert!(json_value.get("execution_info").expect("should have execution_info").is_null()); + assert!(json_value + .get("execution_info") + .expect("should have execution_info") + .is_null()); } #[tokio::test] @@ -565,7 +568,10 @@ mod tests { let json_value = serde_json::to_value(&result).unwrap(); - assert!(json_value.get("execution_info").expect("should have execution_info").is_null()); + assert!(json_value + .get("execution_info") + .expect("should have execution_info") + .is_null()); } #[tokio::test]