mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 04:00:05 +00:00
Fix Flaky Sync Committee Test (#9337)
* fix flake * Update beacon-chain/core/altair/sync_committee_test.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
This commit is contained in:
parent
be85b7f909
commit
170e2e115b
@ -337,10 +337,10 @@ func Test_ValidateSyncMessageTime(t *testing.T) {
|
|||||||
wantedErr: "",
|
wantedErr: "",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "sync_message.slot == current_slot+CLOCK_DISPARITY+200ms",
|
name: "sync_message.slot == current_slot+CLOCK_DISPARITY-1000ms",
|
||||||
args: args{
|
args: args{
|
||||||
syncMessageSlot: 100,
|
syncMessageSlot: 100,
|
||||||
genesisTime: timeutils.Now().Add(-(100*time.Duration(params.BeaconConfig().SecondsPerSlot)*time.Second - params.BeaconNetworkConfig().MaximumGossipClockDisparity - 200*time.Millisecond)),
|
genesisTime: timeutils.Now().Add(-(100 * time.Duration(params.BeaconConfig().SecondsPerSlot) * time.Second) + params.BeaconNetworkConfig().MaximumGossipClockDisparity + 1000*time.Millisecond),
|
||||||
},
|
},
|
||||||
wantedErr: "sync message slot 100 not within allowable range of",
|
wantedErr: "sync message slot 100 not within allowable range of",
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user