Skip to content

Commit

Permalink
fix test fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Agusrodri committed Feb 12, 2025
1 parent b7656d6 commit 5acaa27
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,9 @@ describeSuite({
await polkadotJs.query.ethereumTokenTransfers.currentChannelInfo()
).unwrap();

console.log("currentChannelInfoAfter", currentChannelInfoAfter);

expect(currentChannelInfoAfter.channelId).to.eq(newChannelId);
expect(currentChannelInfoAfter.paraId).to.eq(newParaId);
expect(currentChannelInfoAfter.agentId).to.eq(newAgentId);
expect(currentChannelInfoAfter.channelId.toHex()).to.eq(newChannelId);
expect(currentChannelInfoAfter.paraId.toNumber()).to.eq(newParaId);
expect(currentChannelInfoAfter.agentId.toHex()).to.eq(newAgentId);
},
});
},
Expand Down

0 comments on commit 5acaa27

Please sign in to comment.