Skip to content

Commit

Permalink
Applied CR suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Zajkowski committed Apr 29, 2024
1 parent a4de630 commit bb5732e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions rpc_sidecar/src/rpcs/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit bb5732e

Please sign in to comment.