Skip to content

Commit 2c06e7a

Browse files
committed
Fixing failing test cases
1 parent 749a184 commit 2c06e7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/run-pass/issue-2930.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ mod stream {
2323
fn main() {
2424
let (bc, _bp) = stream::init();
2525

26-
stream::client::send(bc, "abc");
26+
stream::client::send(bc, ~"abc");
2727
}

src/test/run-pass/task-comm-16.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn test_vec() {
3333

3434
fn test_str() {
3535
let (ch, po) = pipes::stream();
36-
let s0 = "test";
36+
let s0 = ~"test";
3737
ch.send(s0);
3838
let s1 = po.recv();
3939
assert (s1[0] == 't' as u8);

0 commit comments

Comments
 (0)