remove intentionally failing test

This commit is contained in:
Jane Lusby 2020-02-11 08:39:27 -08:00
parent c8817aa521
commit ec8ee7fb81

View File

@ -408,21 +408,3 @@ impl Capture {
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn debug_backtrace_fmt() {
let bt = Backtrace::capture();
eprintln!("uncaptured: {:?}", bt);
let bt = Backtrace::force_capture();
eprintln!("captured: {:?}", bt);
eprintln!("display print: {}", bt);
eprintln!("display print alt: {:#}", bt);
eprintln!("resolved: {:?}", bt);
eprintln!("resolved alt: {:#?}", bt);
unimplemented!();
}
}