Skip to content

Commit 60d8ea2

Browse files
committed
Run cargo fmt on existing code
1 parent fb14a61 commit 60d8ea2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/glob-std.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ fn main() {
6262
}
6363

6464
fn glob_with_vec(pattern: &str, options: glob::MatchOptions) -> Vec<PathBuf> {
65-
glob_with(pattern, options).unwrap().map(|r| r.unwrap()).collect()
65+
glob_with(pattern, options)
66+
.unwrap()
67+
.map(|r| r.unwrap())
68+
.collect()
6669
}
6770

6871
let root = TempDir::new("glob-tests");

0 commit comments

Comments
 (0)