Skip to content

Commit ff0ade2

Browse files
committed
fix: import correct assert package
1 parent e8dbf7a commit ff0ade2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

libevm/reentrancy/guard_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ package reentrancy
1919
import (
2020
"testing"
2121

22+
"github.com/holiman/uint256"
23+
"github.com/stretchr/testify/assert"
24+
"github.com/stretchr/testify/require"
25+
2226
"github.com/ava-labs/libevm/common"
2327
"github.com/ava-labs/libevm/core/vm"
2428
"github.com/ava-labs/libevm/libevm"
2529
"github.com/ava-labs/libevm/libevm/ethtest"
2630
"github.com/ava-labs/libevm/libevm/hookstest"
27-
"github.com/holiman/uint256"
28-
"github.com/stretchr/testify/require"
29-
"gotest.tools/assert"
3031
)
3132

3233
func TestGuard(t *testing.T) {

0 commit comments

Comments
 (0)