Fix test etl::collector::tests::collect_chunks fails #52 (#71)

Tentative fix until we implement a proper solution.
This commit is contained in:
battlmonstr
2021-11-16 15:09:13 +01:00
committed by GitHub
parent 17131ef9d4
commit 19cd855ee7

View File

@@ -160,7 +160,7 @@ mod tests {
#[tokio::test]
async fn collect_chunks() {
// generate random entries
let mut entries: Vec<Entry<_, _>> = (0..10000)
let mut entries: Vec<Entry<_, _>> = (0..5000)
.map(|_| Entry::new(rand::random(), BlockNumber(rand::random())))
.collect();
let db = new_mem_database().unwrap();