summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/matchers/not.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2021-08-06 14:22:43 +0000
committerGitHub <noreply@github.com>2021-08-06 14:22:43 +0000
commit9853b147199b270271f2fa68fdef68bc4027ed33 (patch)
treece71c03c58e0d78e7f02eb068db12b7d5d1be9b6 /vendor/github.com/onsi/gomega/matchers/not.go
parent840981773325499c241d518ffbda06762cfdc759 (diff)
parent79e4baf4ca5d61a4e9c997f9ec025e46e45e5d9d (diff)
downloadpodman-9853b147199b270271f2fa68fdef68bc4027ed33.tar.gz
podman-9853b147199b270271f2fa68fdef68bc4027ed33.tar.bz2
podman-9853b147199b270271f2fa68fdef68bc4027ed33.zip
Merge pull request #11151 from containers/dependabot/go_modules/github.com/onsi/gomega-1.15.0
Bump github.com/onsi/gomega from 1.14.0 to 1.15.0
Diffstat (limited to 'vendor/github.com/onsi/gomega/matchers/not.go')
-rw-r--r--vendor/github.com/onsi/gomega/matchers/not.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/vendor/github.com/onsi/gomega/matchers/not.go b/vendor/github.com/onsi/gomega/matchers/not.go
index 2c91670bd..78b71910d 100644
--- a/vendor/github.com/onsi/gomega/matchers/not.go
+++ b/vendor/github.com/onsi/gomega/matchers/not.go
@@ -1,7 +1,6 @@
package matchers
import (
- "github.com/onsi/gomega/internal/oraclematcher"
"github.com/onsi/gomega/types"
)
@@ -26,5 +25,5 @@ func (m *NotMatcher) NegatedFailureMessage(actual interface{}) (message string)
}
func (m *NotMatcher) MatchMayChangeInTheFuture(actual interface{}) bool {
- return oraclematcher.MatchMayChangeInTheFuture(m.Matcher, actual) // just return m.Matcher's value
+ return types.MatchMayChangeInTheFuture(m.Matcher, actual) // just return m.Matcher's value
}