@@ -37,7 +37,6 @@ func TestGCBHandle(t *testing.T) {
37
37
id : "test-build-123" ,
38
38
executor : executor ,
39
39
output : pipe ,
40
- outputChan : make (chan string , 100 ),
41
40
resultChan : make (chan build.Result , 1 ),
42
41
cancelPolicy : build .CancelImmediate ,
43
42
status : build .BuildStateStarting ,
@@ -120,7 +119,6 @@ func TestGCBHandleWait(t *testing.T) {
120
119
id : "test-build-123" ,
121
120
executor : executor ,
122
121
output : pipe ,
123
- outputChan : make (chan string , 100 ),
124
122
resultChan : make (chan build.Result , 1 ),
125
123
cancelPolicy : build .CancelImmediate ,
126
124
status : build .BuildStateStarting ,
@@ -161,7 +159,6 @@ func TestGCBHandleWaitSuccess(t *testing.T) {
161
159
id : "test-build-123" ,
162
160
executor : executor ,
163
161
output : pipe ,
164
- outputChan : make (chan string , 100 ),
165
162
resultChan : make (chan build.Result , 1 ),
166
163
cancelPolicy : build .CancelImmediate ,
167
164
status : build .BuildStateStarting ,
@@ -222,7 +219,6 @@ func TestGCBHandleCancelPolicies(t *testing.T) {
222
219
executor : executor ,
223
220
operation : operation ,
224
221
output : pipe ,
225
- outputChan : make (chan string , 100 ),
226
222
resultChan : make (chan build.Result , 1 ),
227
223
cancelPolicy : tc .cancelPolicy ,
228
224
status : build .BuildStateRunning ,
0 commit comments