mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 15:31:20 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
22 lines
522 B
Go
22 lines
522 B
Go
package slashings
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/operations/slashings/mock"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
var (
|
|
_ = PoolManager(&Pool{})
|
|
_ = PoolInserter(&Pool{})
|
|
_ = PoolManager(&mock.PoolMock{})
|
|
_ = PoolInserter(&mock.PoolMock{})
|
|
)
|
|
|
|
func TestPool_validatorSlashingPreconditionCheck_requiresLock(t *testing.T) {
|
|
p := &Pool{}
|
|
_, err := p.validatorSlashingPreconditionCheck(nil, 0)
|
|
require.ErrorContains(t, "caller must hold read/write lock", err)
|
|
}
|