aboutsummaryrefslogtreecommitdiff
path: root/cmp/cmpopts/errors_xerrors.go
blob: 60b0727fc7d698f8aa305f033112f06a966c9600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2021, The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !go1.13
// +build !go1.13

// TODO(≥go1.13): For support on <go1.13, we use the xerrors package.
// Drop this file when we no longer support older Go versions.

package cmpopts

import "golang.org/x/xerrors"

func compareErrors(x, y interface{}) bool {
	xe := x.(error)
	ye := y.(error)
	return xerrors.Is(xe, ye) || xerrors.Is(ye, xe)
}