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 following tests within examples/library-fluent fail intermittently on master:
/// Test loading the `en` language.#[test]fntest_select_english(){localizer().select(&["en".parse().unwrap()]).unwrap();assert_eq!("Hello World!", &hello_world())}/// Test loading the `fr` language.#[test]fntest_select_french(){localizer().select(&["fr".parse().unwrap()]).unwrap();assert_eq!("Bonjour le monde!", &hello_world())}
It sometimes takes many runs to see the failure, but it can be seen with:
The following tests within
examples/library-fluent
fail intermittently onmaster
:It sometimes takes many runs to see the failure, but it can be seen with:
The output of which is:
Sometimes it's the English that fails, sometimes it's the French.
If I had to guess, I'd say something is either:
HashMap
internally and making an assumption about iteration order, or;Neither of which can be done. Perhaps a
sort
should be done somewhere in the internals?The text was updated successfully, but these errors were encountered: