Skip to content

Commit 749a184

Browse files
committed
Fix a failing string test.
1 parent 01ca0d1 commit 749a184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/pipes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ mod test {
996996
let (c1, p1) = pipes::stream();
997997
let (c2, p2) = pipes::stream();
998998

999-
c1.send("abc");
999+
c1.send(~"abc");
10001000

10011001
alt (p1, p2).select() {
10021002
right(_) { fail }

0 commit comments

Comments
 (0)