Skip to content

Commit 1aa069d

Browse files
committed
chore(gnodev): lint
1 parent ce93c12 commit 1aa069d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contribs/gnodev/pkg/dev/node_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import (
2020
tm2events "github.com/gnolang/gno/tm2/pkg/events"
2121
"github.com/gnolang/gno/tm2/pkg/log"
2222
"github.com/gnolang/gno/tm2/pkg/std"
23-
tm2std "github.com/gnolang/gno/tm2/pkg/std"
2423
"github.com/stretchr/testify/assert"
2524
"github.com/stretchr/testify/require"
2625
)
@@ -310,7 +309,7 @@ func Render(_ string) string { return strconv.Itoa(i) }
310309

311310
res, err = testingCallRealmWithConfig(t, node, callCfg, msg)
312311
require.Error(t, err)
313-
require.ErrorAs(t, err, &tm2std.OutOfGasError{})
312+
require.ErrorAs(t, err, &std.OutOfGasError{})
314313

315314
// Transaction should be committed regardless the error
316315
require.Equal(t, emitter.NextEvent().Type(), events.EvtTxResult,

0 commit comments

Comments
 (0)