Skip to content

Commit

Permalink
reduce test repeat count
Browse files Browse the repository at this point in the history
  • Loading branch information
piakushin committed Apr 14, 2021
1 parent 3fc9b2a commit 9e4413a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ async fn test_check_bloom_filter_single() {
let path = common::init("contains_bloom_filter_single");
let storage = common::create_test_storage(&path, 10).await.unwrap();
let data = b"some_random_data";
let repeat = 8192;
let repeat = 4096;
for i in 0..repeat {
let pos_key = KeyTest::new(i + repeat);
let neg_key = KeyTest::new(i + 2 * repeat);
Expand Down

0 comments on commit 9e4413a

Please sign in to comment.