mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Upgrade bincode, pkg-config, regex, cmake, fnv
This commit is contained in:
parent
1e23d90631
commit
8d540d1f9e
5 changed files with 157 additions and 117 deletions
|
@ -10,8 +10,8 @@ fn test_byte_string_move() {
|
|||
let mut byte_vec = byte_str.bytes();
|
||||
|
||||
assert_eq!(byte_vec, "servo".as_bytes());
|
||||
assert_eq!(*byte_str, []);
|
||||
assert_eq!(&*byte_str, &*Vec::<u8>::new());
|
||||
|
||||
byte_vec = byte_str.into();
|
||||
assert_eq!(byte_vec, Vec::new());
|
||||
assert_eq!(byte_vec, Vec::<u8>::new());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue