diff --git a/proptest/src/test_runner/errors.rs b/proptest/src/test_runner/errors.rs index bf17f201..8f6eca11 100644 --- a/proptest/src/test_runner/errors.rs +++ b/proptest/src/test_runner/errors.rs @@ -114,10 +114,7 @@ impl fmt::Display for TestError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self { TestError::Abort(ref why) => write!(f, "Test aborted: {}", why), - TestError::Fail(ref why, ref what) => { - writeln!(f, "Test failed: {}.", why)?; - write!(f, "minimal failing input: {:#?}", what) - } + TestError::Fail(ref why, ref _what) => write!(f, "Test failed: {}.", why), } } }