Changed from 2 to 3 templates in the test

This commit is contained in:
Eric Ratliff
2026-02-03 09:26:39 -06:00
parent e6934cdb18
commit 9c2ac97158

View File

@@ -37,7 +37,7 @@ fn test_list_templates() {
let mgr = TemplateManager::new().unwrap();
let templates = mgr.list_templates();
assert_eq!(templates.len(), 2, "Should have exactly 2 templates");
assert_eq!(templates.len(), 3, "Should have exactly 3 templates");
assert!(templates.iter().any(|t| t.contains("basic")), "Should list basic template");
assert!(templates.iter().any(|t| t.contains("testing")), "Should list testing template");
}