forked from TrueCloudLab/frostfs-node
Reapply "[#972] Use slices.Sort* when useful"
This reverts commit 3359349acb
.
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
2c4b50a71e
commit
669103a33e
2 changed files with 4 additions and 9 deletions
|
@ -5,7 +5,7 @@ import (
|
|||
"errors"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
"slices"
|
||||
"testing"
|
||||
|
||||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/pilorama"
|
||||
|
@ -192,9 +192,7 @@ func testGetSubTreeOrderAsc(t *testing.T, p pilorama.ForestStorage) {
|
|||
require.True(t, found, "unknown node %d %v", i, acc.seen[i].GetBody().GetNodeId())
|
||||
}
|
||||
|
||||
require.True(t, sort.SliceIsSorted(paths, func(i, j int) bool {
|
||||
return paths[i] < paths[j]
|
||||
}))
|
||||
require.True(t, slices.IsSorted(paths))
|
||||
})
|
||||
t.Run("depth=1", func(t *testing.T) {
|
||||
acc := subTreeAcc{errIndex: -1}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue