Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Feb 3, 2025
1 parent 7ae2947 commit d3036d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/sdk/tests/smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ async fn ci_k8s_basic_functionalities_should_works() {
// pause / resume
alice.pause().await.unwrap();
let res_err = alice
.wait_metric_with_timeout(BEST_BLOCK_METRIC, |x| x > 5_f64, 5)
.wait_metric_with_timeout(BEST_BLOCK_METRIC, |x| x > 5_f64, 5_u32)
.await;
assert!(r.is_err());

alice.resume().await.unwrap();
alice
.wait_metric_with_timeout(BEST_BLOCK_METRIC, |x| x > 5_f64, 5)
.wait_metric_with_timeout(BEST_BLOCK_METRIC, |x| x > 5_f64, 5_u32)
.await
.unwrap();

Expand Down

0 comments on commit d3036d2

Please sign in to comment.