Make the tests use MB to trigger page size issues

This commit is contained in:
Kerollmops 2022-11-29 15:26:24 +01:00
parent 0aa3f667d4
commit b948bb5191
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -1111,8 +1111,8 @@ mod tests {
indexes_path: tempdir.path().join("indexes"),
snapshots_path: tempdir.path().join("snapshots"),
dumps_path: tempdir.path().join("dumps"),
task_db_size: 1024 * 1024, // 1 MiB
index_size: 1024 * 1024, // 1 MiB
task_db_size: 1000 * 1000, // 1 MB, we don't use MiB on purpose.
index_size: 1000 * 1000, // 1 MB, we don't use MiB on purpose.
indexer_config: IndexerConfig::default(),
autobatching_enabled,
};