This commit is contained in:
Edward Langley
2026-04-06 23:21:06 -07:00
parent d76efa9e0e
commit 9b8f939245
2 changed files with 5 additions and 10 deletions

View File

@ -676,7 +676,10 @@ mod tests {
let region_col = cols.iter().position(|c| c == "Region").unwrap();
let key = layout.cell_key(0, region_col).unwrap();
let display = layout.resolve_display(&key).unwrap();
assert!(!display.is_empty(), "Region column should resolve to a value");
assert!(
!display.is_empty(),
"Region column should resolve to a value"
);
}
#[test]