summaryrefslogtreecommitdiff
path: root/internal/api/server_test.go
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-05-02 21:55:49 -1000
committerGitHub <noreply@github.com>2026-05-02 21:55:49 -1000
commit1ec3f87c392145580a62858110d9fd10638203db (patch)
tree2ffbc4fcf585aef8091f02b3315a3234267c5618 /internal/api/server_test.go
parent99115d8158137083239c45e5a860b718ff4cefa1 (diff)
parent85c3bf4d28b0903a2005356339e6ea56855b8c80 (diff)
Merge pull request #2 from thepeterstone/claude/post-epic-cleanup
Post-epic cleanup — green test suite, no skips
Diffstat (limited to 'internal/api/server_test.go')
-rw-r--r--internal/api/server_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/server_test.go b/internal/api/server_test.go
index 5c0deba..516e289 100644
--- a/internal/api/server_test.go
+++ b/internal/api/server_test.go
@@ -255,7 +255,7 @@ func TestGeminiLogs_ParsedCorrectly(t *testing.T) {
}
// 6. Verify the content retrieved via the API endpoint.
- req = httptest.NewRequest("GET", "/api/tasks/"+tk.ID+"/executions/"+exec.ID+"/log", nil)
+ req = httptest.NewRequest("GET", "/api/executions/"+exec.ID+"/log", nil)
w = httptest.NewRecorder()
srv.Handler().ServeHTTP(w, req)