From 5451c64d5d84ecbc154dc7708ad1c72c62336f6e Mon Sep 17 00:00:00 2001 From: ad hoc Date: Thu, 24 Mar 2022 15:55:29 +0100 Subject: [PATCH] increase criteria asc desc test map size --- milli/tests/search/query_criteria.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/tests/search/query_criteria.rs b/milli/tests/search/query_criteria.rs index ef080db9f..786fdbcae 100644 --- a/milli/tests/search/query_criteria.rs +++ b/milli/tests/search/query_criteria.rs @@ -373,7 +373,7 @@ fn criteria_mixup() { fn criteria_ascdesc() { let path = tempfile::tempdir().unwrap(); let mut options = EnvOpenOptions::new(); - options.map_size(10 * 1024 * 1024); // 10 MB + options.map_size(12 * 1024 * 1024); // 10 MB let index = Index::new(options, &path).unwrap(); let mut wtxn = index.write_txn().unwrap();