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) {
38
38
. expected_file ( expected_file)
39
39
. actual_text ( "stdout" , test_stdout)
40
40
. 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" )
45
42
. run ( ) ;
46
43
}
Original file line number Diff line number Diff line change @@ -27,9 +27,6 @@ fn run_tests(extra_args: &[&str], expected_file: &str) {
27
27
. expected_file ( expected_file)
28
28
. actual_text ( "stdout" , test_stdout)
29
29
. 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" )
34
31
. run ( ) ;
35
32
}
You can’t perform that action at this time.
0 commit comments