File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ exclude_re = [
55 " <impl Display" ,
66 # spins forever returning empty vecs
77 " replace <impl Iterator for IterStitchedIndexHunks>::next -> Option<Self::Item> with Some\\ (Default::default\\ (\\ )\\ )" ,
8+ # finds some real lacking coverage of error handling: https://github.com/sourcefrog/conserve/issues/286
9+ " src/blockdir.rs:.*: replace match guard"
810]
911
1012# Include only files that are currently well-tested; most of the others should
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ mod test {
294294
295295 temp. close ( ) . unwrap ( ) ;
296296 }
297-
297+
298298 #[ cfg( unix) ]
299299 #[ test]
300300 fn list_dir_skips_symlinks ( ) {
@@ -303,7 +303,7 @@ mod test {
303303 let transport = Transport :: temp ( ) ;
304304 let dir = transport. local_path ( ) . unwrap ( ) ;
305305 std:: os:: unix:: fs:: symlink ( "foo" , dir. join ( "alink" ) ) . unwrap ( ) ;
306-
306+
307307 let list_dir = transport. list_dir ( "." ) . unwrap ( ) ;
308308 assert_eq ! ( list_dir. files, [ "" ; 0 ] ) ;
309309 assert_eq ! ( list_dir. dirs, [ "" ; 0 ] ) ;
You can’t perform that action at this time.
0 commit comments