Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrodimarco-dfinity committed Oct 25, 2024
1 parent 5dbc22c commit b2ad107
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions rs/nns/test_utils/src/state_test_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,12 @@ pub fn registry_get_changes_since(
version: u64,
) -> RegistryGetChangesSinceResponse {
let mut request = vec![];
RegistryGetChangesSinceRequest { version, limit: None }
.encode(&mut request)
.unwrap();
RegistryGetChangesSinceRequest {
version,
limit: None,
}
.encode(&mut request)
.unwrap();

let result = state_machine
.execute_ingress_as(sender, REGISTRY_CANISTER_ID, "get_changes_since", request)
Expand Down

0 comments on commit b2ad107

Please sign in to comment.