Skip to content

Commit

Permalink
cargo fmt changes
Browse files Browse the repository at this point in the history
  • Loading branch information
desaikd committed Feb 21, 2024
1 parent 47ff5fd commit 536db2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ion-schema-tests-runner/src/generator.rs
Expand Up @@ -121,8 +121,8 @@ fn generate_test_cases_for_file(ctx: Context) -> TokenStream {
// get the schema content from given schema file path
let ion_content = fs::read(ctx.current_dir.as_path())
.unwrap_or_else(|e| panic!("Unable to read {path_string} – {e}"));
let schema_content = Element::read_all(ion_content)
.unwrap_or_else(|e| panic!("Error in {path_string} – {e:?}"));
let schema_content =
Element::read_all(ion_content).unwrap_or_else(|e| panic!("Error in {path_string} – {e:?}"));

let isl_version = find_isl_version(&schema_content);

Expand Down

0 comments on commit 536db2f

Please sign in to comment.