WIP: change over background executor test helpers

This commit is contained in:
Mikayla 2023-11-06 10:16:08 -08:00
parent 123439adc2
commit d66ed4310f
No known key found for this signature in database
4 changed files with 3 additions and 25 deletions

View file

@ -36,12 +36,4 @@ impl Executor {
}
}
}
pub fn record_backtrace(&self) {
match self {
Executor::Production => {}
#[cfg(test)]
Executor::Deterministic(background) => background.record_backtrace(),
}
}
}