Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Apr 22, 2024
1 parent e7a65c9 commit bef5419
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions checked_cli/tests/happ_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ async fn fetch_asset_download_error() -> anyhow::Result<()> {
config_dir: Some(dir.as_ref().to_path_buf()),
app_id: None,
})
.await?;
.await?;

let fetch_err = fetch(FetchArgs {
url: url.clone() + ".nonexistent",
Expand All @@ -373,7 +373,8 @@ async fn fetch_asset_download_error() -> anyhow::Result<()> {
app_id: None,
approve: Some(true),
})
.await.unwrap_err();
.await
.unwrap_err();

assert_eq!("Download failed", fetch_err.to_string());

Expand Down

0 comments on commit bef5419

Please sign in to comment.