summaryrefslogtreecommitdiffstats
path: root/integrations/api_nodeinfo_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrations/api_nodeinfo_test.go')
-rw-r--r--integrations/api_nodeinfo_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/integrations/api_nodeinfo_test.go b/integrations/api_nodeinfo_test.go
index cf9ff4da1b..bbb7912078 100644
--- a/integrations/api_nodeinfo_test.go
+++ b/integrations/api_nodeinfo_test.go
@@ -5,6 +5,7 @@
package integrations
import (
+ "context"
"net/http"
"net/url"
"testing"
@@ -18,10 +19,10 @@ import (
func TestNodeinfo(t *testing.T) {
setting.Federation.Enabled = true
- c = routers.NormalRoutes()
+ c = routers.NormalRoutes(context.TODO())
defer func() {
setting.Federation.Enabled = false
- c = routers.NormalRoutes()
+ c = routers.NormalRoutes(context.TODO())
}()
onGiteaRun(t, func(*testing.T, *url.URL) {