Disable FSRS in state_application test

This test validates legacy SM-2 scheduler behavior and expects specific card states without FSRS memory states. Disable FSRS to maintain test compatibility.
This commit is contained in:
Jarrett Ye 2025-10-15 03:19:13 +08:00
parent e1d8bca31e
commit a137d98038

View file

@ -706,6 +706,8 @@ pub(crate) mod test {
#[test]
fn state_application() -> Result<()> {
let mut col = Collection::new();
// Disable FSRS for this legacy scheduler test
col.set_config_bool(BoolKey::Fsrs, false, false)?;
if col.timing_today()?.near_cutoff() {
return Ok(());
}