Skip to content

Commit

Permalink
fix: temporarily disable clippy error
Browse files Browse the repository at this point in the history
It should be fixed in a different PR.
  • Loading branch information
josecelano committed Oct 27, 2023
1 parent 9777d26 commit 38a1d7a
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 @@ -70,7 +70,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 avoid clippy error
pub name: String,
pub num_torrents: u64,
}
Expand Down

0 comments on commit 38a1d7a

Please sign in to comment.