Parcourir la source

Fix test that failed on rustc 1.45.0

Benjamin Sago il y a 4 ans
Parent
commit
e906786b30
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      dns/src/strings.rs

+ 1 - 1
dns/src/strings.rs

@@ -245,7 +245,7 @@ mod test {
             0xbf,  // label of length 191
         ];
 
-        buf.extend(&[0x65; 191]);  // the rest of the label
+        buf.extend(vec![0x65; 191]);  // the rest of the label
         buf.push(0x00);  // end reading
 
         assert_eq!(Cursor::new(&*buf).read_labels().unwrap().1, 193);