The TorrentDetails struct is missing the tags field:
#[derive(Deserialize, PartialEq, Debug)]
pub struct TorrentDetails {
pub torrent_id: Id,
pub uploader: String,
pub info_hash: String,
pub title: String,
pub description: String,
pub category: Category,
pub upload_date: UtcDateTime,
pub file_size: u64,
pub seeders: u64,
pub leechers: u64,
pub files: Vec<File>,
pub trackers: Vec<String>,
pub magnet_link: String,
}
https://github.com/torrust/torrust-index-backend/blob/develop/tests/common/contexts/torrent/responses.rs#L49
The TorrentDetails struct is missing the tags field:
https://github.com/torrust/torrust-index-backend/blob/develop/tests/common/contexts/torrent/responses.rs#L49