Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tateexon committed Oct 10, 2023
1 parent bf35bd5 commit 2542d0e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions integration-tests/docker/test_env/sol.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"time"

"github.com/google/uuid"
"github.com/pkg/errors"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
tc "github.com/testcontainers/testcontainers-go"
Expand Down Expand Up @@ -86,7 +85,7 @@ func (s *Solana) StartContainer() error {
Logger: l,
})
if err != nil {
return errors.Wrapf(err, "cannot start Solana container")
return fmt.Errorf("cannot start Solana container: %w", err)
}
s.Container = c
host, err := c.Host(context.Background())
Expand Down

0 comments on commit 2542d0e

Please sign in to comment.