Remove from<i64> from db_ids

This commit is contained in:
Julia Lange 2026-02-04 13:59:54 -08:00
parent f2e00afbb9
commit c3d9dff83f
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
5 changed files with 10 additions and 18 deletions

View file

@ -245,10 +245,7 @@ mod tests {
let channel1 = Channel::get_or_create(pool, url_feed.clone()).await.unwrap();
let channel2 = Channel::get_or_create(pool, url_feed).await.unwrap();
assert_eq!(
i64::from(channel1.id()),
i64::from(channel2.id())
);
assert_eq!(channel1.id(), channel2.id());
}
#[tokio::test]