mirror of
https://github.com/rclone/rclone.git
synced 2026-01-04 01:23:24 +00:00
Convert to using github.com/pkg/errors everywhere
This commit is contained in:
@@ -37,7 +37,7 @@ func TestGlobToRegexp(t *testing.T) {
|
||||
{`ab}c`, `(^|/)`, `mismatched '{' and '}'`},
|
||||
{`ab{c`, `(^|/)`, `mismatched '{' and '}'`},
|
||||
{`*.{jpg,png,gif}`, `(^|/)[^/]*\.(jpg|png|gif)$`, ``},
|
||||
{`[a--b]`, `(^|/)`, `Bad glob pattern`},
|
||||
{`[a--b]`, `(^|/)`, `bad glob pattern`},
|
||||
{`a\*b`, `(^|/)a\*b$`, ``},
|
||||
{`a\\b`, `(^|/)a\\b$`, ``},
|
||||
} {
|
||||
|
||||
Reference in New Issue
Block a user