mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
daa6d2e741
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
346 B
Go
13 lines
346 B
Go
package merkle_proof
|
|
|
|
import (
|
|
"testing"
|
|
|
|
common "github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/common/merkle_proof"
|
|
"github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/deneb/ssz_static"
|
|
)
|
|
|
|
func RunMerkleProofTests(t *testing.T, config string) {
|
|
common.RunMerkleProofTests(t, config, "deneb", ssz_static.UnmarshalledSSZ)
|
|
}
|