From 8c24acc99dac30818239ffe8141be06c1cfca4bf Mon Sep 17 00:00:00 2001 From: Geoffrey White <40627776+geoffw0@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:10:57 +0100 Subject: [PATCH] Fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../security/CWE-327/WeakSensitiveDataHashing/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/ql/test/query-tests/security/CWE-327/WeakSensitiveDataHashing/test.rs b/rust/ql/test/query-tests/security/CWE-327/WeakSensitiveDataHashing/test.rs index ff1c0e9c85f..d55305c7745 100644 --- a/rust/ql/test/query-tests/security/CWE-327/WeakSensitiveDataHashing/test.rs +++ b/rust/ql/test/query-tests/security/CWE-327/WeakSensitiveDataHashing/test.rs @@ -165,7 +165,7 @@ struct Seed { } impl Seed { - fn new(seed_value: u64) -> Self { + fn new(_seed_value: u64) -> Self { Seed { } } }