diff options
Diffstat (limited to 'integration_test/non-byzantine_test.go')
-rw-r--r-- | integration_test/non-byzantine_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/integration_test/non-byzantine_test.go b/integration_test/non-byzantine_test.go index df08b97..a95b10c 100644 --- a/integration_test/non-byzantine_test.go +++ b/integration_test/non-byzantine_test.go @@ -59,11 +59,9 @@ func (s *NonByzantineTestSuite) TestNonByzantine() { sch.RegisterEventHandler(vID, v) req.Nil(sch.Seed(NewProposeBlockEvent(vID, now))) } - sch.Run(10) + sch.Run(4) // Check results by comparing test.App instances. - if err = VerifyApps(apps); err != nil { - panic(err) - } + req.NoError(VerifyApps(apps)) } func TestNonByzantine(t *testing.T) { |