mirror of
https://github.com/golang/net.git
synced 2026-03-31 10:27:08 +09:00
Go 1.8 doesn't have t.Helper. Fix the row of red on the dashboard. Change-Id: I85d4bb9fe38e989dc3b6a4e99705599745b83cef Reviewed-on: https://go-review.googlesource.com/80140 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Tom Bergan <tombergan@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
14 lines
282 B
Go
14 lines
282 B
Go
// Copyright 2017 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build go1.9
|
|
|
|
package httpproxy_test
|
|
|
|
import "testing"
|
|
|
|
func init() {
|
|
setHelper = func(t *testing.T) { t.Helper() }
|
|
}
|