Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
echevrier committed Jun 29, 2023
1 parent 1ef87fc commit 59168ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/examples/state_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async fn main() {
let storage_keys = api
.get_all_storage_keys_paged_up_to_count(Some(storage_key_prefix), max_keys, None, None)
.unwrap();
assert!(storage_keys.len() as u32 = 8);
assert_eq!(storage_keys.len() as u32, 8);

let max_keys = 20;
let storage_keys = api.get_storage_keys_paged(None, max_keys.clone(), None, None).unwrap();
Expand Down

0 comments on commit 59168ee

Please sign in to comment.