Skip to content

Commit

Permalink
More clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ismellike committed Jan 31, 2024
1 parent 834e16e commit 34c7474
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions contracts/external/dao-proposal-incentives/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ fn vote_yes_on_proposal(context: &mut Context, proposal_id: u64) -> AnyResult<Ap
vote: dao_voting::voting::Vote::Yes,
rationale: None,
},
&vec![],
&[],
)
}

Expand All @@ -153,7 +153,7 @@ fn execute_proposal(context: &mut Context, proposal_id: u64) {
Addr::unchecked(ADDR1),
context.proposal_single_addr.clone(),
&dao_proposal_single::msg::ExecuteMsg::Execute { proposal_id },
&vec![],
&[],
)
.unwrap();
}
Expand All @@ -173,7 +173,7 @@ pub fn test_setup_native() {
denom: UncheckedDenom::Native(DENOM.to_string()),
},
},
&vec![],
&[],
"dao_proposal_incentives".to_string(),
None,
);
Expand All @@ -190,7 +190,7 @@ pub fn test_setup_native() {
denom: UncheckedDenom::Native(DENOM.to_string()),
},
},
&vec![],
&[],
"dao_proposal_incentives".to_string(),
None,
);
Expand Down Expand Up @@ -303,7 +303,7 @@ pub fn test_hook() {
denom: UncheckedDenom::Native(DENOM.to_string()),
},
},
&vec![],
&[],
"dao_proposal_incentives".to_string(),
None,
)
Expand Down Expand Up @@ -371,7 +371,7 @@ pub fn test_hook() {
})],
proposer: None,
}),
&vec![],
&[],
)
.unwrap();

Expand Down Expand Up @@ -404,7 +404,7 @@ pub fn test_hook() {
msgs: vec![],
proposer: None,
}),
&vec![],
&[],
)
.unwrap();

Expand Down Expand Up @@ -432,7 +432,7 @@ pub fn test_hook() {
msgs: vec![],
proposer: None,
}),
&vec![],
&[],
)
.unwrap();

Expand Down

0 comments on commit 34c7474

Please sign in to comment.