remove printing in test

This commit is contained in:
John Turner
2025-10-26 01:38:03 -04:00
parent 4d69986e18
commit 1bf7735a8c

View File

@@ -1,5 +1,5 @@
use gentoo_utils::depend; use gentoo_utils::depend;
use mon::{Parser, eof, input::InputIter, tag}; use mon::{eof, input::InputIter, tag, Parser};
use std::fs; use std::fs;
#[test] #[test]
@@ -12,8 +12,6 @@ fn parse_md5_cache() {
for line in metadata.lines() { for line in metadata.lines() {
if line.starts_with("DEPEND=") { if line.starts_with("DEPEND=") {
eprintln!("{line}");
depend::parsers::exprs() depend::parsers::exprs()
.ignore() .ignore()
.or(eof()) .or(eof())