removing unnecessary dbg! calls

This commit is contained in:
Chris Cochrun 2024-11-20 14:05:07 -06:00
parent 0669faa34f
commit 11fb5ddc71

View file

@ -62,10 +62,8 @@ mod test {
db: crate::core::model::get_db().await,
};
image_model.load_from_db().await;
dbg!(&image_model.items);
if let Some(image) = image_model.find(|i| i.id == 3) {
let test_image = test_image("nccq5".into());
dbg!(&test_image);
assert_eq!(test_image.title, image.title);
} else {
assert!(false);