Skip to content

Commit 8b5dda1

Browse files
authored
fix linting (#1103)
1 parent ebe48fd commit 8b5dda1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/prober.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ func (m *manager) SLI() (total int64, failures int64) {
198198
total += pt
199199
failures += pf
200200
}
201-
return
201+
return total, failures
202202
}
203203

204204
// Foreach implements ProberManager

test/test_images/httpproxy/httpproxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ func newDNSCachingTransport() http.RoundTripper {
130130
break
131131
}
132132
}
133-
return
133+
return conn, err
134134
}
135135

136136
if caCert := os.Getenv("CA_CERT"); caCert != "" {

0 commit comments

Comments
 (0)