Skip to content

Commit

Permalink
fixup: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
filmil committed Oct 1, 2020
1 parent f695cda commit 0e12fd0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/pluralrules/tests/fixtures/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use icu_num_util::FixedDecimal;
use icu_pluralrules::PluralOperands;
use serde::Deserialize;
use std::convert::TryInto;
use icu_num_util::FixedDecimal;

/// Defines the data-driven test sets for the operands.
#[derive(Deserialize)]
Expand Down Expand Up @@ -35,7 +35,9 @@ pub struct FixedDecimalInput {

impl From<&FixedDecimalInput> for FixedDecimal {
fn from(f: &FixedDecimalInput) -> Self {
FixedDecimal::from(f.from).multiplied_pow10(f.pow10).unwrap()
FixedDecimal::from(f.from)
.multiplied_pow10(f.pow10)
.unwrap()
}
}

Expand Down

0 comments on commit 0e12fd0

Please sign in to comment.