Skip to content

Commit

Permalink
Fix failing collator tests (#2575)
Browse files Browse the repository at this point in the history
This Pull Request fixes the regressed tests caused by the ICU4X version bump.
  • Loading branch information
jedel1043 committed Jan 29, 2023
1 parent bd0652f commit b7782ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Binary file modified boa_icu_provider/data/icudata.postcard
Binary file not shown.
5 changes: 3 additions & 2 deletions boa_icu_provider/src/bin/datagen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ fn main() -> Result<(), Box<dyn Error>> {
.init()?;

let source_data = SourceData::default()
.with_cldr_latest(CldrLocaleSubset::Modern)?
.with_icuexport_latest()?;
.with_cldr_for_tag(SourceData::LATEST_TESTED_CLDR_TAG, CldrLocaleSubset::Modern)?
.with_icuexport_for_tag(SourceData::LATEST_TESTED_ICUEXPORT_TAG)?
.with_collations(vec![String::from("search*")]);

let blob_out = Out::Blob(Box::new(File::create(
data_root().join("icudata.postcard"),
Expand Down

0 comments on commit b7782ab

Please sign in to comment.