Skip to content

Commit ae4f884

Browse files
authored
[testing] Remove superfluous gomega dep (#3063)
1 parent 3ccc4cb commit ae4f884

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ require (
3131
github.com/mr-tron/base58 v1.2.0
3232
github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d
3333
github.com/onsi/ginkgo/v2 v2.13.1
34-
github.com/onsi/gomega v1.29.0
3534
github.com/pires/go-proxyproto v0.6.2
3635
github.com/prometheus/client_golang v1.14.0
3736
github.com/prometheus/client_model v0.3.0
@@ -110,7 +109,6 @@ require (
110109
github.com/gogo/protobuf v1.3.2 // indirect
111110
github.com/golang/protobuf v1.5.3 // indirect
112111
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
113-
github.com/google/go-cmp v0.6.0 // indirect
114112
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
115113
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
116114
github.com/hashicorp/go-bexpr v0.1.10 // indirect

tests/e2e/e2e_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ package e2e_test
66
import (
77
"testing"
88

9-
"github.com/onsi/gomega"
10-
119
// ensure test packages are scanned by ginkgo
1210
_ "github.com/ava-labs/avalanchego/tests/e2e/banff"
1311
_ "github.com/ava-labs/avalanchego/tests/e2e/c"
@@ -24,7 +22,6 @@ import (
2422
)
2523

2624
func TestE2E(t *testing.T) {
27-
gomega.RegisterFailHandler(ginkgo.Fail)
2825
ginkgo.RunSpecs(t, "e2e test suites")
2926
}
3027

tests/upgrade/upgrade_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ import (
99
"testing"
1010

1111
"github.com/onsi/ginkgo/v2"
12-
"github.com/onsi/gomega"
1312
"github.com/stretchr/testify/require"
1413

1514
"github.com/ava-labs/avalanchego/tests/fixture/e2e"
1615
"github.com/ava-labs/avalanchego/tests/fixture/tmpnet"
1716
)
1817

1918
func TestUpgrade(t *testing.T) {
20-
gomega.RegisterFailHandler(ginkgo.Fail)
2119
ginkgo.RunSpecs(t, "upgrade test suites")
2220
}
2321

0 commit comments

Comments
 (0)