mirror of
https://github.com/rclone/rclone.git
synced 2025-12-16 00:04:40 +00:00
Convert to using github.com/pkg/errors everywhere
This commit is contained in:
@@ -6,6 +6,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/ncw/rclone/fs"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func TestNew(t *testing.T) {
|
||||
@@ -310,7 +311,7 @@ func TestEndCallZeroConnections(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
var errFoo = fmt.Errorf("Foo")
|
||||
var errFoo = errors.New("foo")
|
||||
|
||||
type dummyPaced struct {
|
||||
retry bool
|
||||
|
||||
Reference in New Issue
Block a user