forked from TrueCloudLab/frostfs-node
[#1344] pilorama: Use require.ErrorIs
in tests
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
aea855e8f3
commit
910db42748
1 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
package pilorama
|
package pilorama
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -184,10 +183,10 @@ func testForestTreeAdd(t *testing.T, s Forest) {
|
||||||
|
|
||||||
t.Run("other trees are unaffected", func(t *testing.T) {
|
t.Run("other trees are unaffected", func(t *testing.T) {
|
||||||
_, err := s.TreeGetByPath(cid, treeID+"123", AttributeFilename, []string{"file.txt"}, false)
|
_, err := s.TreeGetByPath(cid, treeID+"123", AttributeFilename, []string{"file.txt"}, false)
|
||||||
require.True(t, errors.Is(err, ErrTreeNotFound), "got: %v", err)
|
require.ErrorIs(t, err, ErrTreeNotFound)
|
||||||
|
|
||||||
_, err = s.TreeGetMeta(cid, treeID+"123", 0)
|
_, err = s.TreeGetMeta(cid, treeID+"123", 0)
|
||||||
require.True(t, errors.Is(err, ErrTreeNotFound), "got: %v", err)
|
require.ErrorIs(t, err, ErrTreeNotFound)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue