From 196e9c17d853bc3472d9484684f449e07f61183b Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Sun, 9 Feb 2025 15:23:19 -0700 Subject: [PATCH] remove recipe debugging --- tools/src/recipe.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/src/recipe.rs b/tools/src/recipe.rs index bb77321..eb906e4 100644 --- a/tools/src/recipe.rs +++ b/tools/src/recipe.rs @@ -159,11 +159,9 @@ mod test { ]; for (recipe_filename, is_leaf) in recipes.iter() { - println!("{recipe_filename}"); let recipe_path = std::path::PathBuf::from(recipe_filename); let recipe = Recipe::from_file(&recipe_path).unwrap(); let result = recipe.is_vitamin(); - println!("recipe {:#?}, leaf={}", recipe_filename, result); assert_eq!(result, *is_leaf); } }