Compare commits

..

2 commits

Author SHA1 Message Date
seb
cfe49adca9 Merge pull request 'sort dependencies alphabetically after reading them' (#31) from sort-dependencies into main
Reviewed-on: #31
2025-07-22 09:59:45 -06:00
f60dd18c0a sort dependencies alphabetically after reading them
This is mostly to make the tests reliable.

Without this the dependencies are inserted into the vector in directory
order, which in my checkout of the repo did not match the alphabetical
order of the dependencies in the test.
2025-07-20 22:27:48 -06:00

View file

@ -212,6 +212,9 @@ impl Issue {
}
}
}
if let Some(deps) = &mut dependencies {
deps.sort();
}
Ok(dependencies)
}