From 8a7d95dfb78b7e826b1c19eabd74503b9bd6af94 Mon Sep 17 00:00:00 2001 From: Steven van der Vegt Date: Wed, 9 Sep 2026 14:02:52 +0200 Subject: [PATCH] fix(docs): import cmd package through the /v6 module path The docs up-to-date test (#4493) was backported alongside the module path change (#4487) and still imports the unsuffixed path, which makes 'go test ./docs/...' and 'go mod tidy' fail on V6.2. Assisted-by: AI --- docs/generate_docs_uptodate_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/generate_docs_uptodate_test.go b/docs/generate_docs_uptodate_test.go index 477992dae..61e095661 100644 --- a/docs/generate_docs_uptodate_test.go +++ b/docs/generate_docs_uptodate_test.go @@ -23,7 +23,7 @@ import ( "path/filepath" "testing" - "github.com/nuts-foundation/nuts-node/cmd" + "github.com/nuts-foundation/nuts-node/v6/cmd" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" )