mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-13 05:11:21 +00:00
Fix possibly incorrect usage of conversion
This commit is contained in:
@ -31,7 +31,7 @@ func TestRepeat(t *testing.T) {
|
||||
for i := 0; i < cnt; i++ {
|
||||
timeout := time.After(time.Second * 2)
|
||||
select {
|
||||
case _ = <-rt.Chan():
|
||||
case <-rt.Chan():
|
||||
case <-timeout:
|
||||
t.Fatal("expected RepeatTimer to fire")
|
||||
}
|
||||
|
Reference in New Issue
Block a user