[#128] objecttest: Fix linter

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
remotes/KirillovDenis/feature/137-monitoring_grpc_channel
Pavel Karpy 2022-01-25 19:41:46 +03:00 committed by Alex Vanin
parent fb5b56fdc9
commit 41f17d1a09
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
package address
import (
"github.com/nspcc-dev/neofs-sdk-go/container/id/test"
cidtest "github.com/nspcc-dev/neofs-sdk-go/container/id/test"
"github.com/nspcc-dev/neofs-sdk-go/object/address"
"github.com/nspcc-dev/neofs-sdk-go/object/id/test"
oidtest "github.com/nspcc-dev/neofs-sdk-go/object/id/test"
)
// Address returns random object.Address.
@ -11,7 +11,7 @@ func Address() *address.Address {
x := address.NewAddress()
x.SetContainerID(cidtest.ID())
x.SetObjectID(test.ID())
x.SetObjectID(oidtest.ID())
return x
}