From e4087893a15fd9336d33691c3050c64db5cfcad7 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Mon, 15 Nov 2021 12:37:56 +0300 Subject: [PATCH] [#966] engine: Fix test after neofs-api-go replacement Signed-off-by: Alex Vanin --- pkg/local_object_storage/engine/control_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/local_object_storage/engine/control_test.go b/pkg/local_object_storage/engine/control_test.go index a48964fc..dd9b1437 100644 --- a/pkg/local_object_storage/engine/control_test.go +++ b/pkg/local_object_storage/engine/control_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - cidtest "github.com/nspcc-dev/neofs-api-go/pkg/container/id/test" + cidtest "github.com/nspcc-dev/neofs-sdk-go/container/id/test" "github.com/stretchr/testify/require" ) @@ -13,7 +13,7 @@ func TestExecBlocks(t *testing.T) { defer e.Close() // put some object - obj := generateRawObjectWithCID(t, cidtest.Generate()).Object() + obj := generateRawObjectWithCID(t, cidtest.GenerateID()).Object() addr := obj.Address()