Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Stanton <[email protected]>
  • Loading branch information
ianstanton committed Dec 11, 2024
1 parent d80adba commit eb70e27
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions conductor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -914,9 +914,10 @@ mod tests {
&spec,
&cloud_provider,
)
.await
.expect("Failed to generate spec");
let expected_backups_path = "https://eusdevsg.blob.core.windows.net/my-blob/v2/test-instance";
.await
.expect("Failed to generate spec");
let expected_backups_path =
"https://eusdevsg.blob.core.windows.net/my-blob/v2/test-instance";
assert_eq!(
result["spec"]["restore"]["backupsPath"].as_str().unwrap(),
expected_backups_path
Expand All @@ -943,9 +944,10 @@ mod tests {
&spec,
&cloud_provider,
)
.await
.expect("Failed to generate spec");
let expected_backups_path = "https://eusdevsg.blob.core.windows.net/my-blob/v2/test-instance";
.await
.expect("Failed to generate spec");
let expected_backups_path =
"https://eusdevsg.blob.core.windows.net/my-blob/v2/test-instance";
assert_eq!(
result["spec"]["restore"]["backupsPath"].as_str().unwrap(),
expected_backups_path
Expand Down

0 comments on commit eb70e27

Please sign in to comment.