mirror of https://github.com/fluffle/goirc
Fix tests due to more talky init.
This commit is contained in:
parent
70a2700cbd
commit
aae660cb9c
|
@ -33,6 +33,10 @@ func setUp(t *testing.T, start ...bool) (*Conn, *testState) {
|
|||
// Hack to allow tests of send, recv, write etc.
|
||||
// NOTE: the value of the boolean doesn't matter.
|
||||
c.postConnect()
|
||||
// All connections start with NICK/USER expect these.
|
||||
nc.Expect("NICK test")
|
||||
nc.Expect("USER test 12 * :Testing IRC")
|
||||
|
||||
// Sleep 1ms to allow background routines to start.
|
||||
<-time.After(1e6)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue