summaryrefslogtreecommitdiff
path: root/internal/handlers/handlers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/handlers_test.go')
-rw-r--r--internal/handlers/handlers_test.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/internal/handlers/handlers_test.go b/internal/handlers/handlers_test.go
index 93afba5..ca24778 100644
--- a/internal/handlers/handlers_test.go
+++ b/internal/handlers/handlers_test.go
@@ -1320,21 +1320,6 @@ func TestParseFormOr400(t *testing.T) {
// Timeline and Conditions Handler Tests
// =============================================================================
-func TestHandleTabConditions(t *testing.T) {
- h, cleanup := setupTestHandler(t)
- defer cleanup()
-
- req := httptest.NewRequest("GET", "/tabs/conditions", nil)
- w := httptest.NewRecorder()
-
- h.HandleTabConditions(w, req)
-
- // May return 500 if template not found, but the handler is executed
- if w.Code != http.StatusOK && w.Code != http.StatusInternalServerError {
- t.Errorf("Expected status 200 or 500, got %d", w.Code)
- }
-}
-
func TestHandleConditionsPage(t *testing.T) {
h, cleanup := setupTestHandler(t)
defer cleanup()