You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make generate_test_routes deterministic based on its seed
The intent of `generate_test_routes` is to be deterministic based
on a seed which is printed at the start. That way if a test fails,
the seed can be trivially hard-coded and the test can be
replicated.
Sadly, it was not, as it used an iterator over an `IndexedMap`
with key order randomization. Luckily, `IndexedMap` already
supports sorted iteration, so we simply use it here.
0 commit comments