aboutsummaryrefslogtreecommitdiff
path: root/src/errors/wrap_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors/wrap_test.go')
-rw-r--r--src/errors/wrap_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/errors/wrap_test.go b/src/errors/wrap_test.go
index 0a7bc5d16a..58ed95fd9a 100644
--- a/src/errors/wrap_test.go
+++ b/src/errors/wrap_test.go
@@ -30,6 +30,7 @@ func TestIs(t *testing.T) {
match bool
}{
{nil, nil, true},
+ {nil, err1, false},
{err1, nil, false},
{err1, err1, true},
{erra, err1, true},