From 2a97fae70422a0ecbcf16788577e2c3806cadd38 Mon Sep 17 00:00:00 2001 From: alex 023 <12242284@qq.com> Date: Wed, 9 May 2018 11:47:50 +0800 Subject: [PATCH] move golang.org/x/net/context.Context interface Keeping up with the context.go, move golang.org/x/net/context.Context interface --- context_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context_test.go b/context_test.go index 841d8af0..f2375f0c 100644 --- a/context_test.go +++ b/context_test.go @@ -19,7 +19,7 @@ import ( "github.com/gin-contrib/sse" "github.com/stretchr/testify/assert" - "golang.org/x/net/context" + "context" ) var _ context.Context = &Context{}