Skip to content

Commit

Permalink
skip lint for cosmoserror test
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani authored and Pantani committed May 16, 2024
1 parent 91676c3 commit aaaa414
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ignite/pkg/cosmoserror/error_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package cosmoserror_test

import (
"fmt"
"testing"

"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -44,7 +45,7 @@ func TestUnwrap(t *testing.T) {
},
{
name: "should unwrap error",
err: errors.Errorf("test error 4: %w", errors.New("test error 6")),
err: fmt.Errorf("test error 4: %w", errors.New("test error 6")), //nolint:forbidigo
want: errors.New("test error 6"),
},
}
Expand Down

0 comments on commit aaaa414

Please sign in to comment.