Skip to content

Commit

Permalink
Maybe CI is really slow?
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed May 7, 2020
1 parent 9f9697a commit ab26bfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion term_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ func TestTerminal_AddListener(t *testing.T) {
go term.onConfigure()
select {
case <-listen: // passed
case <-time.After(time.Millisecond * 100):
case <-time.After(time.Millisecond * 500):
t.Error("Failed waiting for configure callback")
}
term.RemoveListener(listen)
assert.Equal(t, 0, len(term.listeners))
}

0 comments on commit ab26bfc

Please sign in to comment.