From 62fdfe7975a416baf98f5228b16b003b8c1168a2 Mon Sep 17 00:00:00 2001 From: zhangsoledad <787953403@qq.com> Date: Wed, 8 Jan 2025 11:12:01 +0800 Subject: [PATCH] chore: make clippy happy --- script/src/syscalls/tests/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/script/src/syscalls/tests/mod.rs b/script/src/syscalls/tests/mod.rs index da699c7869..7476dc3eaa 100644 --- a/script/src/syscalls/tests/mod.rs +++ b/script/src/syscalls/tests/mod.rs @@ -10,6 +10,7 @@ mod vm_version_1; #[allow(clippy::assertions_on_constants)] #[test] +#[allow(clippy::assertions_on_constants)] fn test_max_argv_length() { assert!(crate::syscalls::MAX_ARGV_LENGTH < u64::MAX); }