From 2ca3a54fe3c8232e2de852573b08c94c3c8c185f Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Mon, 1 Jul 2024 11:50:38 +0200 Subject: [PATCH] 13 -> 14 accounts --- testing/integration-tests/src/client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/integration-tests/src/client/mod.rs b/testing/integration-tests/src/client/mod.rs index 0214c4901f..3af6c68ec2 100644 --- a/testing/integration-tests/src/client/mod.rs +++ b/testing/integration-tests/src/client/mod.rs @@ -128,7 +128,7 @@ async fn test_iter() { while iter.next().await.unwrap().is_some() { i += 1; } - assert_eq!(i, 13); + assert_eq!(i, 14); } #[tokio::test]