From 6ac666501b8c681363b5f658ed4826daec539a5a Mon Sep 17 00:00:00 2001 From: vchaindz Date: Wed, 2 Sep 2026 18:15:15 +0200 Subject: [PATCH] fix(test): add missing uuid import in create_collections_test The test calls uuid.New() in four places but the package was never imported, so the documents_tests package failed to compile. --- .../documents_tests/create_collections_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/document_storage_tests/documents_tests/create_collections_test.go b/test/document_storage_tests/documents_tests/create_collections_test.go index 7671477c94..513870fb5a 100644 --- a/test/document_storage_tests/documents_tests/create_collections_test.go +++ b/test/document_storage_tests/documents_tests/create_collections_test.go @@ -23,6 +23,7 @@ import ( "github.com/codenotary/immudb/test/document_storage_tests/documents_tests/actions" "github.com/gavv/httpexpect/v2" + "github.com/google/uuid" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" )