Skip to content

Commit c6d677a

Browse files
fb-ikhlepitkoJohnTitor
authored andcommitted
Fixed expected test result for 'glob_match' method
1 parent 522d970 commit c6d677a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/glob-std.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ fn main() {
309309
assert_eq!(glob_with_vec("i/**/*c*", &options), Vec::<PathBuf>::new());
310310
assert_eq!(glob_with_vec("i/**/*d*", &options), Vec::<PathBuf>::new());
311311
assert_eq!(glob_with_vec("i/**/*e*", &options), vec!(
312-
PathBuf::from("i/qwe/eee")
313-
));
312+
PathBuf::from("i/qwe"),
313+
PathBuf::from("i/qwe/eee")));
314314

315315
if env::consts::FAMILY != "windows" {
316316
assert_eq!(

0 commit comments

Comments
 (0)