mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
deb025f57c
* applies assertion funcs to blockchain tests * Merge branch 'master' into blockchain-apply-testutils-assertions * gofmt * Merge refs/heads/master into blockchain-apply-testutils-assertions * Merge refs/heads/master into blockchain-apply-testutils-assertions * Merge refs/heads/master into blockchain-apply-testutils-assertions * Merge refs/heads/master into blockchain-apply-testutils-assertions * Merge refs/heads/master into blockchain-apply-testutils-assertions
28 lines
580 B
Go
28 lines
580 B
Go
package blockchain
|
|
|
|
import (
|
|
"context"
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
logrus.SetOutput(ioutil.Discard)
|
|
}
|
|
|
|
func TestChainService_SaveHead_DataRace(t *testing.T) {
|
|
db, _ := testDB.SetupDB(t)
|
|
s := &Service{
|
|
beaconDB: db,
|
|
}
|
|
go func() {
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}()
|
|
require.NoError(t, s.saveHead(context.Background(), [32]byte{}))
|
|
}
|