Skip to content

Commit 7e15a85

Browse files
committed
Fix test errors
1 parent 327d14a commit 7e15a85

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contracts/ibc-reflect/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ mod tests {
560560
from_json(res.acknowledgement.unwrap()).unwrap();
561561
assert_eq!(
562562
ack.unwrap_err(),
563-
"invalid packet: kind: Other, error: account channel-123"
563+
"invalid packet: kind: Other, error: account channel-123 not found"
564564
);
565565

566566
// register the channel

contracts/ibc-reflect/tests/integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ fn handle_dispatch_packet() {
232232
from_slice(&res.acknowledgement.unwrap(), DESERIALIZATION_LIMIT).unwrap();
233233
assert_eq!(
234234
ack.unwrap_err(),
235-
"invalid packet: kind: Other, error: account channel-123"
235+
"invalid packet: kind: Other, error: account channel-123 not found"
236236
);
237237

238238
// register the channel

contracts/staking/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use cosmwasm_std::{
22
entry_point, to_json_binary, BankMsg, Coin, Decimal, Decimal256, Deps, DepsMut,
33
DistributionMsg, Env, MessageInfo, QuerierWrapper, QueryResponse, Response, StakingMsg,
4-
StdError, StdResult, Uint128, Uint256, WasmMsg, StdErrorKind
4+
StdError, StdErrorKind, StdResult, Uint128, Uint256, WasmMsg,
55
};
66

77
use crate::errors::{StakingError, Unauthorized};

0 commit comments

Comments
 (0)