Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/relayer-cli/src/commands/fee/register_payee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ mod tests {
use ibc_relayer_types::core::ics24_host::identifier::{ChainId, ChannelId, PortId};

#[test]
fn test_regiser_payee() {
fn test_register_payee() {
assert_eq!(
RegisterPayeeCmd {
chain_id: ChainId::from_string("chain_a"),
Expand All @@ -125,7 +125,7 @@ mod tests {
)
}
#[test]
fn test_regiser_payee_alias() {
fn test_register_payee_alias() {
assert_eq!(
RegisterPayeeCmd {
chain_id: ChainId::from_string("chain_a"),
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture/adr-003-handler-implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ where
```

With this boilerplate out of way, one can write tests using a mock client, and associated mock datatypes
in a fairly straightforward way, taking advantage of the `From` instance to lift concerete mock datatypes
in a fairly straightforward way, taking advantage of the `From` instance to lift concrete mock datatypes
into the `Any...` enumeration:

```rust
Expand Down