Formats file.

This commit is contained in:
Thomas Hartmann 2019-10-17 09:56:06 +02:00
parent 305ca11eb5
commit f21405399c

View File

@ -307,7 +307,10 @@ mod tests {
let result = string_to_table(input, false, 2).unwrap();
assert_eq!(
result,
vec![vec![owned("colA", "val1"), owned("col B", "val2 trailing value that should be included"),],]
vec![vec![
owned("colA", "val1"),
owned("col B", "val2 trailing value that should be included"),
],]
)
}
}