Skip to content

Commit 82255c7

Browse files
committed
sort
1 parent 21e18ce commit 82255c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/docbuilder/rustwide_builder.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1993,11 +1993,12 @@ mod tests {
19931993
.unwrap()
19941994
.iter()
19951995
.map(|f| f.name.to_owned())
1996+
.sorted()
19961997
.collect_vec(),
19971998
// "regex" feature is not in the list,
19981999
// because we don't have implicit features for optional dependencies
19992000
// with `dep` syntax any more.
2000-
vec!["default", "std", "alloc", "optional_regex"]
2001+
vec!["alloc", "default", "optional_regex", "std"]
20012002
);
20022003

20032004
Ok(())

0 commit comments

Comments
 (0)