Skip to content

Commit

Permalink
correct queue size assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
shaspitz committed Sep 18, 2023
1 parent c4ab19a commit 1fa2bfa
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions tests/e2e/steps_downtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -410,19 +410,14 @@ func stepsThrottledDowntime(consumerName string) []Step {
consumer: chainID(consumerName),
},
state: State{
chainID(consumerName): ChainState{
ValPowers: &map[validatorID]uint{
validatorID("alice"): 511,
validatorID("bob"): 0,
validatorID("carol"): 500,
},
},
chainID("provi"): ChainState{
ValPowers: &map[validatorID]uint{
validatorID("alice"): 511,
validatorID("bob"): 0,
validatorID("carol"): 500,
},
},
chainID(consumerName): ChainState{
ConsumerPendingPacketQueueSize: uintPtr(1), // packet still queued
},
},
Expand Down

0 comments on commit 1fa2bfa

Please sign in to comment.