forked from TrueCloudLab/frostfs-node
[#496] node: Fix linter importas
Standardize the alias of the import frostfs-sdk-go/object as objectSDK. Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
This commit is contained in:
parent
4bbe9cc936
commit
033eaf77e1
80 changed files with 444 additions and 443 deletions
|
@ -8,7 +8,7 @@ import (
|
|||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/testutil"
|
||||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard"
|
||||
cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test"
|
||||
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
||||
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
||||
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
@ -17,7 +17,7 @@ func TestHeadRaw(t *testing.T) {
|
|||
defer os.RemoveAll(t.Name())
|
||||
|
||||
cnr := cidtest.ID()
|
||||
splitID := object.NewSplitID()
|
||||
splitID := objectSDK.NewSplitID()
|
||||
|
||||
parent := testutil.GenerateObjectWithCID(cnr)
|
||||
testutil.AddAttribute(parent, "foo", "bar")
|
||||
|
@ -70,7 +70,7 @@ func TestHeadRaw(t *testing.T) {
|
|||
_, err = e.Head(context.Background(), headPrm)
|
||||
require.Error(t, err)
|
||||
|
||||
var si *object.SplitInfoError
|
||||
var si *objectSDK.SplitInfoError
|
||||
require.ErrorAs(t, err, &si)
|
||||
|
||||
// SplitInfoError should contain info from both shards
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue