Fix (pointless) clippy suggestion

This commit is contained in:
David Peter 2022-05-28 22:40:07 +02:00
parent 74d6990b4e
commit 941f712975
1 changed files with 1 additions and 1 deletions

View File

@ -1510,7 +1510,7 @@ fn test_exec_batch_multi() {
.lines()
.map(|l| {
let mut words: Vec<_> = l.split_whitespace().collect();
words.sort();
words.sort_unstable();
words
})
.collect();