From 9e9a38651b07c898e17ae1cf9f6d342617bcab23 Mon Sep 17 00:00:00 2001 From: John Saigle <4022790+johnsaigle@users.noreply.github.com> Date: Wed, 21 Aug 2024 11:31:31 -0400 Subject: [PATCH] solana: Clippy: allow unwrap/expect in tests (#315) --- solana/clippy.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 solana/clippy.toml diff --git a/solana/clippy.toml b/solana/clippy.toml new file mode 100644 index 000000000..0358cdb50 --- /dev/null +++ b/solana/clippy.toml @@ -0,0 +1,2 @@ +allow-unwrap-in-tests = true +allow-expect-in-tests = true