Skip to content

Commit

Permalink
Fix typo after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Oct 5, 2020
1 parent fdbd2d0 commit 12f26dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/reflect/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ mod tests {
let info = mock_info(&creator, &coins(2, "token"));
let _res = init(&mut deps, mock_env(), info, msg).unwrap();

let info = mock_info("random", &[]);
let random = HumanAddr::from("random");
let info = mock_info(&random, &[]);
let new_owner = HumanAddr::from("friend");
let msg = HandleMsg::ChangeOwner {
owner: new_owner.clone(),
Expand Down

0 comments on commit 12f26dc

Please sign in to comment.