Skip to content

Commit

Permalink
wip fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jmpesp committed Dec 20, 2024
1 parent 253ca1c commit 08e5d68
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions nexus/src/app/sagas/region_snapshot_replacement_start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1584,8 +1584,11 @@ pub(crate) mod test {
.await
.unwrap();

let affected_volume_original =
datastore.volume_get(db_snapshot.volume_id()).await.unwrap().unwrap();
let affected_volume_original = datastore
.volume_get(db_snapshot.volume_id())
.await
.unwrap()
.unwrap();

verify_clean_slate(
&cptestctx,
Expand Down Expand Up @@ -1688,8 +1691,11 @@ pub(crate) mod test {
.await
.unwrap();

let affected_volume_original =
datastore.volume_get(db_snapshot.volume_id()).await.unwrap().unwrap();
let affected_volume_original = datastore
.volume_get(db_snapshot.volume_id())
.await
.unwrap()
.unwrap();

disk_test.set_always_fail_callback().await;

Expand Down

0 comments on commit 08e5d68

Please sign in to comment.