From 9c2ac97158df2634e32924f549e1ba88e0486f31 Mon Sep 17 00:00:00 2001 From: Eric Ratliff Date: Tue, 3 Feb 2026 09:26:39 -0600 Subject: [PATCH] Changed from 2 to 3 templates in the test --- tests/template_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }