Partially remove Seek constraint from ListingStream, extract fifo node in tests

This commit is contained in:
Nathan Fisher 2024-01-15 00:29:50 -05:00
parent 98fcfd7f5e
commit d3ea6c0971
2 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ use {
};
#[derive(Debug)]
pub struct ListingStream<R: Read + Send + Seek> {
pub struct ListingStream<R: Read + Send> {
pub length: u32,
reader: R,
}

View File

@ -519,5 +519,6 @@ mod tests {
eprintln!("Read incorrect filetype: {:?}", node.filetype);
panic!();
};
node.extract(Some("test/output")).unwrap();
}
}