Add markers surrounding DeltaTest::inspect() output

This commit is contained in:
Dan Davison 2021-12-13 21:49:50 -05:00
parent 799ad15d15
commit f650f485ed

View File

@ -172,7 +172,9 @@ pub struct DeltaTestOutput {
impl DeltaTestOutput {
pub fn inspect(self) -> Self {
eprintln!("{}", "".repeat(100));
eprintln!("{}", self.format_output());
eprintln!("{}", "".repeat(100));
self
}