prysm-pulse/testing/spectest/shared/deneb/merkle_proof/merkle_proof.go
Potuz daa6d2e741
Implement Merkle proof spectests (#13146)
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2023-11-02 23:08:16 +00:00

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)
}