File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1287,7 +1287,7 @@ mod tests {
1287
1287
"ffffffffffffffffff"
1288
1288
] ;
1289
1289
for i in 0 ..=7 {
1290
- let mut stream = std :: io:: Cursor :: new ( :: hex:: decode ( bytes[ i] ) . unwrap ( ) ) ;
1290
+ let mut stream = crate :: io:: Cursor :: new ( :: hex:: decode ( bytes[ i] ) . unwrap ( ) ) ;
1291
1291
assert_eq ! ( super :: BigSize :: read( & mut stream) . unwrap( ) . 0 , values[ i] ) ;
1292
1292
}
1293
1293
let err_bytes = vec ! [
@@ -1303,7 +1303,7 @@ mod tests {
1303
1303
""
1304
1304
] ;
1305
1305
for i in 0 ..=9 {
1306
- let mut stream = std :: io:: Cursor :: new ( :: hex:: decode ( err_bytes[ i] ) . unwrap ( ) ) ;
1306
+ let mut stream = crate :: io:: Cursor :: new ( :: hex:: decode ( err_bytes[ i] ) . unwrap ( ) ) ;
1307
1307
if i < 3 {
1308
1308
assert_eq ! ( super :: BigSize :: read( & mut stream) . err( ) , Some ( crate :: ln:: msgs:: DecodeError :: InvalidValue ) ) ;
1309
1309
}
You can’t perform that action at this time.
0 commit comments