Skip to content

Commit

Permalink
run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Jan 31, 2020
1 parent 501dbc4 commit 5eb722e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/kv/value/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,10 @@ mod tests {
);
assert_eq!(
"a string",
Some("a string").to_value().get_str().expect("invalid value")
Some("a string")
.to_value()
.get_str()
.expect("invalid value")
);

assert_eq!(1u8, 1u64.to_value().get_u8().expect("invalid value"));
Expand Down Expand Up @@ -320,7 +323,9 @@ mod tests {

assert_eq!(
"a string",
Value::from_fill(&TestFill).get_str().expect("invalid value")
Value::from_fill(&TestFill)
.get_str()
.expect("invalid value")
);
}
}

0 comments on commit 5eb722e

Please sign in to comment.