diff options
Diffstat (limited to 'components/util/smallvec.rs')
-rw-r--r-- | components/util/smallvec.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/util/smallvec.rs b/components/util/smallvec.rs index 998f8ef1d57..5185c4ee521 100644 --- a/components/util/smallvec.rs +++ b/components/util/smallvec.rs @@ -498,7 +498,7 @@ pub mod tests { let mut v = SmallVec16::new(); v.push("hello".to_string()); v.push("there".to_string()); - assert_eq!(v.as_slice(), &["hello".to_string(), "there".to_string()]); + assert_eq!(v.as_slice(), vec!["hello".to_string(), "there".to_string()].as_slice()); } #[test] @@ -508,7 +508,7 @@ pub mod tests { v.push("there".to_string()); v.push("burma".to_string()); v.push("shave".to_string()); - assert_eq!(v.as_slice(), &["hello".to_string(), "there".to_string(), "burma".to_string(), "shave".to_string()]); + assert_eq!(v.as_slice(), vec!["hello".to_string(), "there".to_string(), "burma".to_string(), "shave".to_string()].as_slice()); } #[test] @@ -522,9 +522,9 @@ pub mod tests { v.push("there".to_string()); v.push("burma".to_string()); v.push("shave".to_string()); - assert_eq!(v.as_slice(), &[ + assert_eq!(v.as_slice(), vec![ "hello".to_string(), "there".to_string(), "burma".to_string(), "shave".to_string(), "hello".to_string(), "there".to_string(), "burma".to_string(), "shave".to_string(), - ]); + ].as_slice()); } } |