cargo fmt

This commit is contained in:
Kat Marchán 2020-12-18 22:35:52 -08:00
parent b5202a4403
commit 2c443aed85
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 1 additions and 4 deletions

View File

@ -128,10 +128,7 @@ mod tests {
KdlValue::from("foo".to_owned()),
KdlValue::String("foo".to_owned())
);
assert_eq!(
KdlValue::from("bar"),
KdlValue::String("bar".to_owned())
);
assert_eq!(KdlValue::from("bar"), KdlValue::String("bar".to_owned()));
assert_eq!(KdlValue::from(true), KdlValue::Boolean(true));
assert_eq!(KdlValue::from(None::<i64>), KdlValue::Null);