Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xantman committed Apr 24, 2021
1 parent 132e7f0 commit da3c35a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/testing/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -604,12 +604,9 @@ mod tests {
Err(StdError::GenericErr {
msg,
backtrace: None,
}) => {
assert_eq!(msg, "Wait for the unbonding period");
}
_ => {
panic!("Unexpected error")
}
}) => assert_eq!(msg, "Wait for the unbonding period"),

_ => panic!("Unexpected error"),
}

let msg = HandleMsg::WithdrawStake {
Expand Down

0 comments on commit da3c35a

Please sign in to comment.