From 542a90d3901963b1080b70a1ce40e3ab94a97388 Mon Sep 17 00:00:00 2001 From: John Saigle Date: Mon, 18 Mar 2024 09:07:00 -0400 Subject: [PATCH] solana: Clippy: allow unwrap/expect in tests --- 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