mirror of
https://github.com/rclone/rclone
synced 2025-01-12 15:46:25 +01:00
fstests: check for wrapped errors in ListR test
This commit is contained in:
parent
26db80c270
commit
fb58737142
@ -1558,12 +1558,12 @@ func Run(t *testing.T, opt *Opt) {
|
||||
}
|
||||
return nil
|
||||
})
|
||||
if err != errFound && err != errTooMany {
|
||||
if !errors.Is(err, errFound) && !errors.Is(err, errTooMany) {
|
||||
assert.NoError(t, err)
|
||||
}
|
||||
if err != errTooMany {
|
||||
assert.True(t, file1Found, "file1Root not found")
|
||||
assert.True(t, file2Found, "file2Root not found")
|
||||
if !errors.Is(err, errTooMany) {
|
||||
assert.True(t, file1Found, "file1Root %q not found", file1Root.Path)
|
||||
assert.True(t, file2Found, "file2Root %q not found", file2Root.Path)
|
||||
} else {
|
||||
t.Logf("Too many files to list - giving up")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user