fix: corrects a test that could never fail post-name change

This commit is contained in:
Lewis Wynne 2026-04-09 22:28:47 +01:00
parent d34768b63d
commit 6322606335

View file

@ -742,6 +742,6 @@ mod tests {
.unwrap()
.collect();
let content = std::fs::read_to_string(entries[0].as_ref().unwrap().path()).unwrap();
assert!(!content.contains("drawing = \"2026"));
assert!(content.contains("drawing = \"\""));
}
}