diff --git a/tests/template_tests.rs b/tests/template_tests.rs index 724b05c..9f64bd6 100644 --- a/tests/template_tests.rs +++ b/tests/template_tests.rs @@ -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"); }