1
Fork 0

Long lines

This commit is contained in:
Brian Anderson 2012-09-28 02:26:20 -07:00
parent bc9efaad9c
commit a09a49627e
9 changed files with 77 additions and 67 deletions

View file

@ -718,7 +718,7 @@ mod tests {
// send to other readers
for vec::each(reader_convos) |x| {
match *x {
(rc, _) => rc.send(()),
(ref rc, _) => rc.send(()),
}
}
}
@ -727,7 +727,7 @@ mod tests {
// complete handshake with other readers
for vec::each(reader_convos) |x| {
match *x {
(_, rp) => rp.recv(),
(_, ref rp) => rp.recv(),
}
}
wc1.send(()); // tell writer to try again