Skip to content

Commit

Permalink
integration: note OK use of http.DefaultClient
Browse files Browse the repository at this point in the history
Signed-off-by: Hank Donnay <[email protected]>
  • Loading branch information
hdonnay committed Oct 31, 2023
1 parent 6471783 commit c6eb640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func fetchArchive(t testing.TB) {
// Fetch and buffer the jar.
u := downloadURL()
t.Logf("fetching %q", u)
res, err := http.Get(u)
res, err := http.Get(u) // Use of http.DefaultClient guarded by integration.Skip call.
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit c6eb640

Please sign in to comment.