aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/output_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/output_test.go')
-rw-r--r--container/output_test.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/container/output_test.go b/container/output_test.go
index 3fb2ac74..f6d629e3 100644
--- a/container/output_test.go
+++ b/container/output_test.go
@@ -58,16 +58,6 @@ func TestWrapErr(t *testing.T) {
t.Errorf("wrapErrSuffix: %v", err)
}
}, syscall.ENOTRECOVERABLE, []any{"\x00\x00", syscall.ENOTRECOVERABLE}},
- {"self nil", func(t *testing.T) {
- if err := wrapErrSelf(nil); err != nil {
- t.Errorf("wrapErrSelf: %v", err)
- }
- }, nil, nil},
- {"self val", func(t *testing.T) {
- if err := wrapErrSelf(syscall.ENOTRECOVERABLE); err != syscall.ENOTRECOVERABLE {
- t.Errorf("wrapErrSelf: %v", err)
- }
- }, syscall.ENOTRECOVERABLE, []any{"state not recoverable"}},
}
for _, tc := range testCases {