tests: Enable timers for the runtime of the store bench

This commit is contained in:
Damir Jelić
2025-07-31 14:36:39 +02:00
parent 46b0113765
commit 975432565d
+1 -1
View File
@@ -17,7 +17,7 @@ const NUM_JOINED_ROOMS: usize = 10000;
const NUM_STRIPPED_JOINED_ROOMS: usize = 10000;
pub fn restore_session(c: &mut Criterion) {
let runtime = Builder::new_multi_thread().build().expect("Can't create runtime");
let runtime = Builder::new_multi_thread().enable_time().build().expect("Can't create runtime");
// Create a fake list of changes, and a session to recover from.
let mut changes = StateChanges::default();