Skip to content

Commit

Permalink
[no ci] Fix tests after CLI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Apr 12, 2024
1 parent e515524 commit 0160506
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions checked_cli/tests/happ_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async fn distribute_existing_keypair() -> anyhow::Result<()> {
assert_eq!(0, keys.len());

distribute(DistributeArgs {
port: admin_port,
port: Some(admin_port),
name,
password: Some("test".to_string()),
config_dir: Some(dir.as_ref().to_path_buf()),
Expand Down Expand Up @@ -196,7 +196,7 @@ async fn fetch_asset_signed_by_others() -> anyhow::Result<()> {

let fetch_info = fetch(FetchArgs {
url: url.clone(),
port: admin_port,
port: Some(admin_port),
name,
output: Some(dir.as_ref().to_path_buf()),
password: Some("test".to_string()),
Expand Down Expand Up @@ -287,7 +287,7 @@ async fn fetch_asset_signed_by_others_with_mismatches() -> anyhow::Result<()> {

let fetch_info = fetch(FetchArgs {
url: url.clone(),
port: admin_port,
port: Some(admin_port),
name,
output: Some(dir.as_ref().to_path_buf()),
password: Some("test".to_string()),
Expand Down Expand Up @@ -456,7 +456,7 @@ async fn publish_asset_signature(

let fetch_info = fetch(FetchArgs {
url: url.to_string(),
port: admin_port,
port: Some(admin_port),
name: name.clone(),
output: Some(dir.as_ref().to_path_buf()),
password: Some("test".to_string()),
Expand Down

0 comments on commit 0160506

Please sign in to comment.