diff options
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/serialization.rs | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/util/serialization.rs b/src/util/serialization.rs index 189a41a..a8b5438 100644 --- a/src/util/serialization.rs +++ b/src/util/serialization.rs @@ -23,6 +23,9 @@ mod tests {      #[test]      fn test_words_to_line() {          assert_eq!(words_to_line(&["a".to_string()]), "a"); -        assert_eq!(words_to_line(&["a".to_string(), "b".to_string(), "c".to_string()]), "a | b | c"); +        assert_eq!( +            words_to_line(&["a".to_string(), "b".to_string(), "c".to_string()]), +            "a | b | c" +        );      }  } | 
