mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-24 14:35:47 +00:00
increased the validator number to 3 for all e2e tests
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
parent
9720e5dda1
commit
8f6630b2f6
@ -11,6 +11,6 @@ import (
|
|||||||
func TestE2ETestSuite(t *testing.T) {
|
func TestE2ETestSuite(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
cfg := network.LoaderDefaultConfig()
|
cfg := network.LoaderDefaultConfig()
|
||||||
cfg.NumValidators = 1
|
cfg.NumValidators = 3
|
||||||
suite.Run(t, NewE2ETestSuite(cfg))
|
suite.Run(t, NewE2ETestSuite(cfg))
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,25 +10,30 @@ import (
|
|||||||
|
|
||||||
func TestE2ETestSuite(t *testing.T) {
|
func TestE2ETestSuite(t *testing.T) {
|
||||||
cfg := network.LoaderDefaultConfig()
|
cfg := network.LoaderDefaultConfig()
|
||||||
|
cfg.NumValidators = 3
|
||||||
suite.Run(t, NewE2ETestSuite(cfg))
|
suite.Run(t, NewE2ETestSuite(cfg))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestPopE2ETestSuite(t *testing.T) {
|
func TestPopE2ETestSuite(t *testing.T) {
|
||||||
cfg := network.LoaderDefaultConfig()
|
cfg := network.LoaderDefaultConfig()
|
||||||
|
cfg.NumValidators = 3
|
||||||
suite.Run(t, NewPopSelectionE2ETestSuite(cfg))
|
suite.Run(t, NewPopSelectionE2ETestSuite(cfg))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGasConsumptionE2ETestSuite(t *testing.T) {
|
func TestGasConsumptionE2ETestSuite(t *testing.T) {
|
||||||
cfg := network.LoaderDefaultConfig()
|
cfg := network.LoaderDefaultConfig()
|
||||||
|
cfg.NumValidators = 3
|
||||||
suite.Run(t, NewGasConsumptionE2ETestSuite(cfg))
|
suite.Run(t, NewGasConsumptionE2ETestSuite(cfg))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestRestrictedMsgsE2ETestSuite(t *testing.T) {
|
func TestRestrictedMsgsE2ETestSuite(t *testing.T) {
|
||||||
cfg := network.LoaderDefaultConfig()
|
cfg := network.LoaderDefaultConfig()
|
||||||
|
cfg.NumValidators = 3
|
||||||
suite.Run(t, NewRestrictedMsgsE2ESuite(cfg))
|
suite.Run(t, NewRestrictedMsgsE2ESuite(cfg))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAssetDistributionE2ETestSuite(t *testing.T) {
|
func TestAssetDistributionE2ETestSuite(t *testing.T) {
|
||||||
cfg := network.LoaderDefaultConfig()
|
cfg := network.LoaderDefaultConfig()
|
||||||
|
cfg.NumValidators = 3
|
||||||
suite.Run(t, NewAssetDistributionE2ETestSuite(cfg))
|
suite.Run(t, NewAssetDistributionE2ETestSuite(cfg))
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user