Skip to content

Commit

Permalink
wait longer for new blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
tbro committed Sep 26, 2024
1 parent cbee182 commit 980a1db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/demo_native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ async fn test_smoke() -> Result<()> {
let new = testing.test_state().await;

println!("New State:{}", new);
if i % 2 == 0 && new <= initial {
if i % 5 == 0 && new <= initial {
panic!("Chain state not incrementing");
}

Expand Down

0 comments on commit 980a1db

Please sign in to comment.