summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleksandr Redko <oleksandr.red+github@gmail.com>2023-02-18 23:56:08 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-03-08 10:19:25 +0100
commit0f01bd46374b13cdc5d7925c913bba777a58bb5b (patch)
treec539da1af78df3055f07135cb4014cb559bfcb49
parentd171d1543d6df3f93a368c240a247513e5b7da44 (diff)
server: Replace golang.org/x/net/context with context
-rw-r--r--commands/server_test.go2
1 files changed, 1 insertions, 1 deletions
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"