fix take_until unit test

This commit is contained in:
Geoffroy Couprie 2015-02-15 01:01:25 +01:00
parent 68215b4fe6
commit 5c81d769c4

View File

@ -821,6 +821,6 @@ mod tests {
println!("Done 2\n");
let r3 = x("abcefg".as_bytes());
assert_eq!(r3, Error(42));
assert_eq!(r3, Incomplete(0));
}
}