From 2040ec8190518db84d1651c596950488750ab567 Mon Sep 17 00:00:00 2001 From: Pierre-Henri Symoneaux Date: Sun, 25 Aug 2019 20:19:20 +0200 Subject: Fixed a few clippy warnings (but not all) --- src/csv.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/csv.rs') diff --git a/src/csv.rs b/src/csv.rs index 417e8e6..9c5cd9f 100644 --- a/src/csv.rs +++ b/src/csv.rs @@ -83,9 +83,9 @@ impl super::Table { mod tests { use crate::{Table, Row, Cell}; - static CSV_S: &'static str = "ABC,DEFG,HIJKLMN\n\ - foobar,bar,foo\n\ - foobar2,bar2,foo2\n"; + static CSV_S: &str = "ABC,DEFG,HIJKLMN\n\ + foobar,bar,foo\n\ + foobar2,bar2,foo2\n"; fn test_table() -> Table { let mut table = Table::new(); -- cgit v1.2.3