WIP: Morph: Add unit tests #2

Closed
dstepanov-yadro wants to merge 233 commits from TrueCloudLab/frostfs-node:master into object-3608-morph-unit-tests
Showing only changes of commit 508e2064eb - Show all commits

View file

@ -2,7 +2,6 @@ package common
import (
"context"
"fmt"
"sort"
"strings"
@ -48,7 +47,6 @@ func StartClientCommandSpan(cmd *cobra.Command) {
var components sort.StringSlice
for c := cmd; c != nil; c = c.Parent() {
fmt.Println(c.Name())
components = append(components, c.Name())
}
for i, j := 0, len(components)-1; i < j; {