File tree Expand file tree Collapse file tree 3 files changed +10
-11
lines changed Expand file tree Collapse file tree 3 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -61,16 +61,15 @@ pub(crate) fn calc_result(
6161 } else if let Some ( panic_str) = maybe_panic_str {
6262 TestResult :: TrFailedMsg ( format ! (
6363 r#"panic did not contain expected string
64- panic message: ` {panic_str:?}`,
65- expected substring: ` {msg:?}` "#
64+ panic message: {panic_str:?}
65+ expected substring: {msg:?}"#
6666 ) )
6767 } else {
6868 TestResult :: TrFailedMsg ( format ! (
6969 r#"expected panic with string value,
7070 found non-string value: `{:?}`
71- expected substring: `{:?}`"# ,
72- ( * err) . type_id( ) ,
73- msg
71+ expected substring: {msg:?}"# ,
72+ ( * err) . type_id( )
7473 ) )
7574 }
7675 }
Original file line number Diff line number Diff line change @@ -200,8 +200,8 @@ fn test_should_panic_bad_message() {
200200 }
201201 let expected = "foobar" ;
202202 let failed_msg = r#"panic did not contain expected string
203- panic message: ` "an error message"`,
204- expected substring: ` "foobar"` "# ;
203+ panic message: "an error message"
204+ expected substring: "foobar""# ;
205205 let desc = TestDescAndFn {
206206 desc : TestDesc {
207207 name : StaticTestName ( "whatever" ) ,
@@ -238,7 +238,7 @@ fn test_should_panic_non_string_message_type() {
238238 let failed_msg = format ! (
239239 r#"expected panic with string value,
240240 found non-string value: `{:?}`
241- expected substring: ` "foobar"` "# ,
241+ expected substring: "foobar""# ,
242242 TypeId :: of:: <i32 >( )
243243 ) ;
244244 let desc = TestDescAndFn {
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ note: test did not panic as expected at $DIR/test-should-panic-failed-show-span.
1515note: test did not panic as expected at $DIR/test-should-panic-failed-show-span.rs:31:4
1616---- should_panic_with_substring_panics_with_incorrect_string stdout ----
1717note: panic did not contain expected string
18- panic message: ` "ZOMGWTFBBQ"`,
19- expected substring: ` "message"`
18+ panic message: "ZOMGWTFBBQ"
19+ expected substring: "message"
2020---- should_panic_with_substring_panics_with_non_string_value stdout ----
2121note: expected panic with string value,
2222 found non-string value: `TypeId($HEX)`
23- expected substring: ` "message"`
23+ expected substring: "message"
2424
2525failures:
2626 should_panic_with_any_message_does_not_panic
You can’t perform that action at this time.
0 commit comments