forked from TrueCloudLab/frostfs-node
Revert "[#972] Use slices.Sort* when useful"
This reverts commit b871d7a5e8
.
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
946f2ec2bf
commit
3359349acb
2 changed files with 9 additions and 4 deletions
|
@ -4,7 +4,7 @@ import (
|
|||
"context"
|
||||
"errors"
|
||||
"path"
|
||||
"slices"
|
||||
"sort"
|
||||
"testing"
|
||||
|
||||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/pilorama"
|
||||
|
@ -177,7 +177,9 @@ func TestGetSubTreeOrderAsc(t *testing.T) {
|
|||
require.True(t, found, "unknown node")
|
||||
}
|
||||
|
||||
require.True(t, slices.IsSorted(paths))
|
||||
require.True(t, sort.SliceIsSorted(paths, func(i, j int) bool {
|
||||
return paths[i] < paths[j]
|
||||
}))
|
||||
}
|
||||
|
||||
var (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue