From 30a4afe138b858e5f9bc81257c20a4a3434aaeb2 Mon Sep 17 00:00:00 2001 From: Jose Celano Date: Tue, 14 Nov 2023 15:55:58 +0000 Subject: [PATCH] fix: [#342] disable clippy warning until we reestablish the E2E tests. --- tests/common/contexts/torrent/responses.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/common/contexts/torrent/responses.rs b/tests/common/contexts/torrent/responses.rs index 929d31f9..a04d1d74 100644 --- a/tests/common/contexts/torrent/responses.rs +++ b/tests/common/contexts/torrent/responses.rs @@ -75,8 +75,9 @@ pub struct TorrentDetails { } #[derive(Deserialize, PartialEq, Debug)] +#[allow(clippy::struct_field_names)] pub struct Category { - pub category_id: CategoryId, + pub category_id: CategoryId, // todo: rename to `id` pub name: String, pub num_torrents: u64, }