Lower the required code threshold. (#2685)

This commit is contained in:
Tomasz Drwięga
2019-05-24 15:21:19 +02:00
committed by GitHub
parent fa08a1e35c
commit 22d40435a2
+2 -2
View File
@@ -34,7 +34,7 @@ fn should_return_storage() {
assert!(
client.storage(key.clone(), Some(genesis_hash).into())
.map(|x| x.map(|x| x.0.len())).unwrap().unwrap()
> 195_000
> 10_000
);
assert_matches!(
client.storage_hash(key.clone(), Some(genesis_hash).into()).map(|x| x.is_some()),
@@ -42,7 +42,7 @@ fn should_return_storage() {
);
assert!(
client.storage_size(key.clone(), None).unwrap().unwrap()
> 195_000
> 10_000
);
}