Test fixes and rebase conflicts

This commit is contained in:
Alex Crichton 2015-02-17 19:00:20 -08:00
parent ba8ce4c2c2
commit 665ea963d3
18 changed files with 65 additions and 64 deletions

View file

@ -520,7 +520,7 @@ mod tests {
fn test_null_byte() {
use thread;
let result = thread::spawn(move|| {
Path::new(b"foo/bar\0")
Path::new(b"foo/bar\0");
}).join();
assert!(result.is_err());

View file

@ -1307,7 +1307,7 @@ mod tests {
fn test_null_byte() {
use thread;
let result = thread::spawn(move|| {
Path::new(b"foo/bar\0")
Path::new(b"foo/bar\0");
}).join();
assert!(result.is_err());