mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
1e31653514
Former-commit-id: 8964a0d79f57aaef5599f6647e39fe15fdd24b9f [formerly 1c8bf6c78834b8829acdaf8a21c5ab088696a890] Former-commit-id: e56cffa5e4884b287292bf3338f2612ed1a57ecb
25 lines
346 B
Go
25 lines
346 B
Go
package sharding
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestShard_ValidateShardID(t *testing.T) {
|
|
tests := []struct {
|
|
headers []*CollationHeader
|
|
}{
|
|
{
|
|
headers: nil,
|
|
}, {
|
|
headers: nil,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Logf("val: %v", tt.headers)
|
|
if 0 == 1 {
|
|
t.Fatalf("Wrong number of transactions. want=%d. got=%d", 5, 3)
|
|
}
|
|
}
|
|
}
|