File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,6 @@ fn run_tests(extra_args: &[&str], expected_file: &str) {
3838 . expected_file ( expected_file)
3939 . actual_text ( "stdout" , test_stdout)
4040 . normalize ( r#"(?<prefix>"exec_time": )[0-9.]+"# , r#"${prefix}"$$EXEC_TIME""# )
41- . normalize (
42- r"thread '(?P<name>.*?)' \(\d+\) panicked" ,
43- "thread '$name' ($$TID) panicked" ,
44- )
41+ . normalize ( r"thread '(?P<name>.*?)' \(\d+\) panicked" , "thread '$name' ($$TID) panicked" )
4542 . run ( ) ;
4643}
Original file line number Diff line number Diff line change @@ -27,9 +27,6 @@ fn run_tests(extra_args: &[&str], expected_file: &str) {
2727 . expected_file ( expected_file)
2828 . actual_text ( "stdout" , test_stdout)
2929 . normalize ( r#"\btime="[0-9.]+""# , r#"time="$$TIME""# )
30- . normalize (
31- r"thread '(?P<name>.*?)' \(\d+\) panicked" ,
32- "thread '$name' ($$TID) panicked" ,
33- )
30+ . normalize ( r"thread '(?P<name>.*?)' \(\d+\) panicked" , "thread '$name' ($$TID) panicked" )
3431 . run ( ) ;
3532}
You can’t perform that action at this time.
0 commit comments