Skip to content

Commit 4e255bf

Browse files
committed
removed todos and prints
1 parent d55e8cb commit 4e255bf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

subscription.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,6 @@ func ExecuteSubscription(p ExecuteParams) chan *Result {
224224
for {
225225
select {
226226
case <-p.Context.Done():
227-
println("context cancelled")
228227
// TODO send the context error to the resultchannel?
229228
return
230229

testutil/subscription.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func RunSubscribe(t *testing.T, test *TestSubscription) {
6262

6363
var results []*graphql.Result
6464
for res := range c {
65-
println(pretty(res))
65+
t.Log(pretty(res))
6666
results = append(results, res)
6767
}
6868

0 commit comments

Comments
 (0)