forked from TrueCloudLab/frostfs-sdk-go
[#128] objecttest: Fix linter
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
fb5b56fdc9
commit
41f17d1a09
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
package address
|
package address
|
||||||
|
|
||||||
import (
|
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/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.
|
// Address returns random object.Address.
|
||||||
|
@ -11,7 +11,7 @@ func Address() *address.Address {
|
||||||
x := address.NewAddress()
|
x := address.NewAddress()
|
||||||
|
|
||||||
x.SetContainerID(cidtest.ID())
|
x.SetContainerID(cidtest.ID())
|
||||||
x.SetObjectID(test.ID())
|
x.SetObjectID(oidtest.ID())
|
||||||
|
|
||||||
return x
|
return x
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue