Skip to content

Commit

Permalink
Fix subxt integration test off-by-one test case (#1640)
Browse files Browse the repository at this point in the history
  • Loading branch information
xermicus committed Apr 15, 2024
1 parent b4c8a9b commit be8cc21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/subxt-tests/src/cases/events.rs
Expand Up @@ -25,7 +25,7 @@ async fn case() -> anyhow::Result<()> {
})
.await?;

assert_eq!(rs.len(), 4);
assert_eq!(rs.len(), 5);

// TODO: currently event decoding is different than ink, as we can see in contract-transcode.
let e1 = &rs[0];
Expand Down

0 comments on commit be8cc21

Please sign in to comment.