Fix a failing string test.

This commit is contained in:
Eric Holk 2012-08-03 12:04:08 -07:00
parent 01ca0d1f68
commit 749a184a06

View file

@ -996,7 +996,7 @@ mod test {
let (c1, p1) = pipes::stream();
let (c2, p2) = pipes::stream();
c1.send("abc");
c1.send(~"abc");
alt (p1, p2).select() {
right(_) { fail }