Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
zbraniecki committed Oct 9, 2020
1 parent 343335d commit f44e215
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/fs-data-provider/tests/test_file_io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ use std::borrow::Cow;

#[test]
fn test_read_json() {
let provider = FsDataProvider::try_new("../../resources/testdata/data/json")
let provider = FsDataProvider::try_new("../../resources/testdata/data/json");

let response = provider
.load(&DataRequest {
data_key: icu_data_key!(plurals: cardinal@1),
Expand Down

0 comments on commit f44e215

Please sign in to comment.