test: rename e2e tests (#13913)

This commit is contained in:
Julien Robert
2022-12-15 10:55:01 +01:00
committed by GitHub
parent fe34e5df32
commit ce167a2074
56 changed files with 451 additions and 455 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ import (
"github.com/stretchr/testify/suite"
)
func TestIntegrationTestSuite(t *testing.T) {
func TestE2ETestSuite(t *testing.T) {
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
cfg.NumValidators = 2
suite.Run(t, NewIntegrationTestSuite(cfg))
suite.Run(t, NewE2ETestSuite(cfg))
}