mirror of
https://github.com/tendermint/tendermint.git
synced 2026-08-21 06:36:19 +00:00
fix error message
This commit is contained in:
@@ -369,7 +369,7 @@ func TestNextWaitChan(t *testing.T) {
|
||||
|
||||
select {
|
||||
case <-el2.NextWaitChan():
|
||||
t.Fatal("nextWaitChan should have been closed")
|
||||
t.Fatal("nextWaitChan should not have been closed")
|
||||
case <-time.After(10 * time.Millisecond):
|
||||
}
|
||||
|
||||
@@ -384,7 +384,7 @@ func TestNextWaitChan(t *testing.T) {
|
||||
el3 := l.PushBack(3)
|
||||
select {
|
||||
case <-el3.NextWaitChan():
|
||||
t.Fatal("nextWaitChan should have been closed")
|
||||
t.Fatal("nextWaitChan should not have been closed")
|
||||
case <-time.After(10 * time.Millisecond):
|
||||
}
|
||||
l.Clear()
|
||||
|
||||
Reference in New Issue
Block a user