mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
context: avoid importing context package twice
Change-Id: Id0a127e080dda8ee62738922c6de8caf3719dd68 Reviewed-on: https://go-review.googlesource.com/c/go/+/295949 Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com> Trust: Josh Bleecher Snyder <josharian@gmail.com> Trust: Kevin Burke <kev@inburke.com> Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
parent
dc4698f52b
commit
c9d9b40b13
1 changed files with 1 additions and 2 deletions
|
|
@ -5,7 +5,6 @@
|
||||||
package context_test
|
package context_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
. "context"
|
. "context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
@ -141,7 +140,7 @@ func BenchmarkCheckCanceled(b *testing.B) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkContextCancelDone(b *testing.B) {
|
func BenchmarkContextCancelDone(b *testing.B) {
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
ctx, cancel := WithCancel(Background())
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
b.RunParallel(func(pb *testing.PB) {
|
b.RunParallel(func(pb *testing.PB) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue