We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 522d970 commit c6d677aCopy full SHA for c6d677a
tests/glob-std.rs
@@ -309,8 +309,8 @@ fn main() {
309
assert_eq!(glob_with_vec("i/**/*c*", &options), Vec::<PathBuf>::new());
310
assert_eq!(glob_with_vec("i/**/*d*", &options), Vec::<PathBuf>::new());
311
assert_eq!(glob_with_vec("i/**/*e*", &options), vec!(
312
- PathBuf::from("i/qwe/eee")
313
- ));
+ PathBuf::from("i/qwe"),
+ PathBuf::from("i/qwe/eee")));
314
315
if env::consts::FAMILY != "windows" {
316
assert_eq!(
0 commit comments