Skip to content

Commit 09257c7

Browse files
committed
test(e2e): fix misleading nolint annotation in cleanup
1 parent a6456f9 commit 09257c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/e2e/helpers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func newSandbox(t *testing.T, extraArgs ...string) SandboxView { //nolint:unused
173173
// Register cleanup before waiting so the sandbox is always removed even
174174
// if waitRunning or the test itself fails.
175175
t.Cleanup(func() {
176-
runCLI("sandbox", "rm", "--force", id) //nolint:errcheck
176+
_, _, _ = runCLI("sandbox", "rm", "--force", id)
177177
})
178178

179179
waitRunning(t, id)

0 commit comments

Comments
 (0)