Skip to content

Commit

Permalink
fix: [#342] disable clippy warning
Browse files Browse the repository at this point in the history
until we reestablish the E2E tests.
  • Loading branch information
josecelano committed Nov 14, 2023
1 parent f8aa238 commit 7a27bba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/common/contexts/torrent/responses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ pub struct TorrentDetails {

#[derive(Deserialize, PartialEq, Debug)]
pub struct Category {
pub category_id: CategoryId,
#[allow(clippy::struct_field_names)]
pub category_id: CategoryId, // todo: rename to `id`
pub name: String,
pub num_torrents: u64,
}
Expand Down

0 comments on commit 7a27bba

Please sign in to comment.