From: Oleksandr Redko Date: Sat, 18 Feb 2023 21:56:08 +0000 (+0200) Subject: server: Replace golang.org/x/net/context with context X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0f01bd46374b13cdc5d7925c913bba777a58bb5b;p=brevno-suite%2Fhugo server: Replace golang.org/x/net/context with context --- diff --git a/commands/server_test.go b/commands/server_test.go index cf790c3fc..010208067 100644 --- a/commands/server_test.go +++ b/commands/server_test.go @@ -14,6 +14,7 @@ package commands import ( + "context" "fmt" "net/http" "os" @@ -26,7 +27,6 @@ import ( "github.com/gohugoio/hugo/config" "github.com/gohugoio/hugo/helpers" "github.com/gohugoio/hugo/htesting" - "golang.org/x/net/context" "golang.org/x/sync/errgroup" qt "github.com/frankban/quicktest"