cli/compose/convert: remove uses of pkg/errors in tests

While there may be reasons to keep pkg/errors in production code,
we don't need them for these tests.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-02-01 16:00:01 +01:00
parent 45d81f849e
commit 832f5fa2c8
+1 -1
View File
@@ -2,6 +2,7 @@ package convert
import (
"context"
"errors"
"os"
"strings"
"testing"
@@ -12,7 +13,6 @@ import (
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/swarm"
"github.com/docker/docker/client"
"github.com/pkg/errors"
"gotest.tools/v3/assert"
is "gotest.tools/v3/assert/cmp"
)