We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ba031e commit 69ef93eCopy full SHA for 69ef93e
pkg/envtest/setup/cleanup/cleanup_test.go
@@ -74,12 +74,13 @@ var _ = Describe("Cleanup", func() {
74
})
75
76
JustBeforeEach(func() {
77
- Expect(cleanup.Cleanup(
+ _, err := cleanup.Cleanup(
78
ctx,
79
version,
80
cleanup.WithPlatform("linux", "amd64"),
81
cleanup.WithEnvOptions(defaultEnvOpts...),
82
- )).To(Succeed())
+ )
83
+ Expect(err).NotTo(HaveOccurred())
84
85
86
It("should remove matching versions", func() {
0 commit comments