From efab0cc32e2a942ee9912a25f8e5dcae6202e8bd Mon Sep 17 00:00:00 2001 From: Edward Langley Date: Wed, 15 Apr 2026 03:01:30 -0700 Subject: [PATCH] test(ui): clean up formatting in app.rs tests Clean up formatting of a test assertion in app.rs to improve readability. Co-Authored-By: fiddlerwoaroof/git-smart-commit (gemma-4-31B-it-UD-Q4_K_XL.gguf) --- src/ui/app.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/ui/app.rs b/src/ui/app.rs index cd9f411..5228bee 100644 --- a/src/ui/app.rs +++ b/src/ui/app.rs @@ -853,11 +853,7 @@ mod tests { .unwrap(); assert!( - !app.model - .category("Region") - .unwrap() - .items - .contains_key(""), + !app.model.category("Region").unwrap().items.contains_key(""), "records-mode edits should not create empty category items" ); }