Skip to content

Commit

Permalink
apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sean Chen <[email protected]>
Co-authored-by: Farhad Shabani <[email protected]>
Signed-off-by: Rano | Ranadeep <[email protected]>
  • Loading branch information
3 people authored Apr 20, 2024
1 parent dd021d9 commit 4a7c034
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- [ibc-apps-transfer] Compatible `PrefixedDenom` parsing with `ibc-go`.
- [ibc-apps-transfer] Bring `PrefixedDenom` parsing up to parity with `ibc-go`.
([\#1177](https://github.com/cosmos/ibc-rs/issues/1177))
4 changes: 2 additions & 2 deletions ibc-core/ics24-host/types/src/validate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ mod tests {
}

#[test]
fn parse_invalid_connection_id_non_idexed() {
fn parse_invalid_connection_id_non_indexed() {
// invalid indexing for connection id
validate_connection_identifier("connection-0123").expect_err("InvalidNamedIndex");
validate_connection_identifier("connection0123").expect_err("InvalidNamedIndex");
Expand Down Expand Up @@ -222,7 +222,7 @@ mod tests {
}

#[test]
fn parse_invalid_channel_id_non_idexed() {
fn parse_invalid_channel_id_non_indexed() {
// invalid indexing for channel id
validate_channel_identifier("channel-0123").expect_err("InvalidNamedIndex");
validate_channel_identifier("channel0123").expect_err("InvalidNamedIndex");
Expand Down

0 comments on commit 4a7c034

Please sign in to comment.