I started poking around and found this panic message ``` thread 'tests::test' panicked at 'Assert CLI failure: Expected output to contain 41 but could not find it in 42 ', /some/file ``` This reminds me that my atom IDE currently fails to parse multi-line panics - I just filed this issue yesterday. ^^ https://github.com/AtomBuild/atom-build-cargo/issues/85 When I compare it with the output of `assert_eq!(42, 41);` ``` ... 'assertion failed: `(left == right)` (left: `42`, right: `41`)' ... ``` How about something similar to what we already know from std: ``` ... 'CLI assertion failed: `(Output expected to contain `41`)` (observed: `42`)' ... ```
I started poking around and found this panic message
This reminds me that my atom IDE currently fails to parse multi-line panics - I just filed this issue yesterday. ^^ AtomBuild/atom-build-cargo#85
When I compare it with the output of
assert_eq!(42, 41);How about something similar to what we already know from std: