Skip to content

Commit

Permalink
ci fix: remove into_iter()
Browse files Browse the repository at this point in the history
  • Loading branch information
ashu26jha committed Aug 7, 2024
1 parent d9f65d7 commit de77db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/env_preferences/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mod linux_tests {
!locale_res.is_empty(),
"Empty hashmap for locales retrieved"
);
for locale in locale_res.into_values().into_iter() {
for locale in locale_res.into_values() {
assert!(locale.is_ascii(), "Invalid form of locale retrieved")
}
}
Expand Down

0 comments on commit de77db0

Please sign in to comment.