Explorar o código

Fix subxt integration test off-by-one test case (#1640)

Cyrill Leutwiler hai 1 ano
pai
achega
be8cc2193f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      integration/subxt-tests/src/cases/events.rs

+ 1 - 1
integration/subxt-tests/src/cases/events.rs

@@ -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];