From f21405399cb60df969158abe7a40abc2aee780cd Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Thu, 17 Oct 2019 09:56:06 +0200 Subject: [PATCH] Formats file. --- src/commands/from_ssv.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/commands/from_ssv.rs b/src/commands/from_ssv.rs index 913df9981a..f14d89356a 100644 --- a/src/commands/from_ssv.rs +++ b/src/commands/from_ssv.rs @@ -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"), + ],] ) } }