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
The determinism tests fail, due to the newly introduced ADDRESS_CITY_GEN_FN which uses a separate rand::thread_rng().
The test originally seeds the rng and provides fake with two identical instances here
I have no idea on top of my hat, but the footpring of ADDRESS_CITY_GEN_FN needs to be changed from Option<fn()->String> to somehow include the original thread_rng().
The text was updated successfully, but these errors were encountered:
First of all sorry for the inconvenience.
The determinism tests fail, due to the newly introduced
ADDRESS_CITY_GEN_FN
which uses a separaterand::thread_rng()
.The test originally seeds the rng and provides fake with two identical instances here
tests/determinism.rs#L10
I have no idea on top of my hat, but the footpring of
ADDRESS_CITY_GEN_FN
needs to be changed fromOption<fn()->String>
to somehow include the originalthread_rng()
.The text was updated successfully, but these errors were encountered: