From 459a92f47621108389fcb3c4b2cc93e15b6a5bac Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Thu, 15 Feb 2024 11:24:49 -0800 Subject: [PATCH] Address new clippy lint. --- src/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test.rs b/src/test.rs index ea9947b1b8..331826c451 100644 --- a/src/test.rs +++ b/src/test.rs @@ -420,7 +420,7 @@ fn parse_test_case( } // A blank line ends a test case if the test case isn't empty. - Some(line) if line.is_empty() => { + Some("") => { if !is_first_line { return Some(TestCase { attributes }); }