From d448e2b49dc6c0e7ef165d1077c7d90d3f94742a Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Fri, 2 Feb 2024 11:01:54 -0600 Subject: [PATCH] chore: clippy fixes --- tests/github_issues.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/github_issues.rs b/tests/github_issues.rs index e924351..93e5b53 100644 --- a/tests/github_issues.rs +++ b/tests/github_issues.rs @@ -176,7 +176,7 @@ fn zxing_bench_grey_image_issue_luma8_image() { DecodingHintDictionary, Exceptions, MultiUseMultiFormatReader, }; - const FILE_NAME : &'static str = "test_resources/blackbox/github_issue_cases/170050507-1f10f0ef-82ca-4e14-a2d2-4b288ec54809.png"; + const FILE_NAME : &str = "test_resources/blackbox/github_issue_cases/170050507-1f10f0ef-82ca-4e14-a2d2-4b288ec54809.png"; let mut hints = DecodingHintDictionary::default(); @@ -268,7 +268,7 @@ fn zxing_bench_grey_image_issue_raw_luma8() { Exceptions, Luma8LuminanceSource, MultiUseMultiFormatReader, }; - const FILE_NAME : &'static str = "test_resources/blackbox/github_issue_cases/170050507-1f10f0ef-82ca-4e14-a2d2-4b288ec54809.png"; + const FILE_NAME : &str = "test_resources/blackbox/github_issue_cases/170050507-1f10f0ef-82ca-4e14-a2d2-4b288ec54809.png"; let mut hints = DecodingHintDictionary::default();