forked from TrueCloudLab/frostfs-node
[#772] node: Apply gofumpt
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
00aa6d9749
commit
79088baa06
136 changed files with 293 additions and 239 deletions
|
@ -233,8 +233,7 @@ func (whe *writeHeaderError) Error() string {
|
|||
return "write header error"
|
||||
}
|
||||
|
||||
type writeHeaderErrorObjectWriter struct {
|
||||
}
|
||||
type writeHeaderErrorObjectWriter struct{}
|
||||
|
||||
func (w *writeHeaderErrorObjectWriter) WriteHeader(_ context.Context, _ *objectSDK.Object) error {
|
||||
return &writeHeaderError{}
|
||||
|
@ -250,8 +249,7 @@ func (whe *writePayloadError) Error() string {
|
|||
return "write payload error"
|
||||
}
|
||||
|
||||
type writePayloadErrorObjectWriter struct {
|
||||
}
|
||||
type writePayloadErrorObjectWriter struct{}
|
||||
|
||||
func (w *writePayloadErrorObjectWriter) WriteHeader(_ context.Context, _ *objectSDK.Object) error {
|
||||
return nil
|
||||
|
@ -261,8 +259,7 @@ func (w *writePayloadErrorObjectWriter) WriteChunk(_ context.Context, _ []byte)
|
|||
return &writePayloadError{}
|
||||
}
|
||||
|
||||
type testKeyStorage struct {
|
||||
}
|
||||
type testKeyStorage struct{}
|
||||
|
||||
func (ks *testKeyStorage) GetKey(_ *util.SessionInfo) (*ecdsa.PrivateKey, error) {
|
||||
return &ecdsa.PrivateKey{}, nil
|
||||
|
@ -1289,7 +1286,6 @@ func TestGetRemoteSmall(t *testing.T) {
|
|||
err := svc.GetRange(ctx, p)
|
||||
require.ErrorAs(t, err, new(*apistatus.ObjectOutOfRange))
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
t.Run("right child", func(t *testing.T) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue