style: remove double blank lines in test files
PR Ready Gate / clear-labels (pull_request) Successful in 2s
CI / test (pull_request) Successful in 29s
CI / review (anthropic--claude-4.6-sonnet, sonnet, SONNET_REVIEW_TOKEN) (pull_request) Successful in 38s
CI / review (gpt-5, security, ., rodin/security-patterns, SECURITY_REVIEW.md, SECURITY_REVIEW_TOKEN) (pull_request) Successful in 57s
CI / review (gpt-5, gpt, GPT_REVIEW_TOKEN) (pull_request) Successful in 1m16s

This commit is contained in:
claw
2026-05-13 14:03:35 -07:00
parent 6d08236773
commit c0c5226934
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -214,7 +214,6 @@ func TestAdapter_PostReview_EventTranslation(t *testing.T) {
}
}
func TestAdapter_PostReview_CommitID(t *testing.T) {
var gotCommitID string
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
-2
View File
@@ -207,7 +207,6 @@ func TestPostReview_EmptyCommitID_OmittedFromPayload(t *testing.T) {
}
}
func TestGetPullRequest_Non200(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNotFound)
@@ -1006,7 +1005,6 @@ func TestDoGet_RespectsContextCancellation(t *testing.T) {
}
}
// mockTransport is a test helper that returns errors for the first N calls,
// then delegates to a real server.
type mockTransport struct {