Support older Rust versions

This commit is contained in:
Carl Lerche
2017-01-26 14:54:25 -08:00
parent a8320da0f8
commit 8b01298806
+1 -1
View File
@@ -54,5 +54,5 @@ fn test_clone() {
let buf2 = buf.clone();
buf.write_str(" of our emergecy broadcast system").unwrap();
assert_ne!(buf.bytes(), buf2.bytes());
assert!(buf.bytes() != buf2.bytes());
}