fix label

This commit is contained in:
larssand
2026-07-06 11:39:41 +02:00
parent 2f208c91ca
commit b1a70351a6
2 changed files with 22 additions and 3 deletions

View File

@@ -69,6 +69,12 @@ class DashboardTests(unittest.TestCase):
def test_dashboard_shows_profile_advisor_fallback_as_notice(self):
self.assertIn("heuristic_fallback", HTML)
self.assertIn("Profile advisor: heuristic fallback", HTML)
self.assertIn("heuristic fallback", HTML)
def test_dashboard_labels_ollama_assessment_errors(self):
self.assertIn("function llmCapability", HTML)
self.assertIn("assessment error", HTML)
self.assertIn("Ollama assessment error", HTML)
if __name__ == "__main__":