소스 검색

Fix test that failed on rustc 1.45.0

Benjamin Sago 4 년 전
부모
커밋
e906786b30
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);