From 25583dcc654008f2e0de8a1dfc8b24e5fa36c518 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile <60601340+lexnv@users.noreply.github.com> Date: Mon, 1 Jul 2024 14:19:22 +0300 Subject: [PATCH] testing: Modify the storage_fetch_raw_keys to reflect substrate-binary (#1667) * testing: Modify the storage_fetch_raw_keys to reflect substrate-binary changes Signed-off-by: Alexandru Vasile * 13 -> 14 accounts --------- Signed-off-by: Alexandru Vasile Co-authored-by: Niklas Adolfsson --- testing/integration-tests/src/full_client/client/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/integration-tests/src/full_client/client/mod.rs b/testing/integration-tests/src/full_client/client/mod.rs index 5cdedab679..2685551335 100644 --- a/testing/integration-tests/src/full_client/client/mod.rs +++ b/testing/integration-tests/src/full_client/client/mod.rs @@ -42,7 +42,7 @@ async fn storage_fetch_raw_keys() { .count() .await; - assert_eq!(len, 13) + assert_eq!(len, 14) } #[cfg(fullclient)] @@ -67,7 +67,7 @@ async fn storage_iter() { .count() .await; - assert_eq!(len, 13); + assert_eq!(len, 14); } #[cfg(fullclient)]