File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ fn build_gas_snapshot_table(tests: &[SuiteTestResult]) -> Table {
334334 let mut row = Row :: new ( ) ;
335335 row. add_cell ( Cell :: new ( test. contract_name ( ) ) ) ;
336336 row. add_cell ( Cell :: new ( & test. signature ) ) ;
337- row. add_cell ( Cell :: new ( test. result . kind . report ( ) . to_string ( ) ) ) ;
337+ row. add_cell ( Cell :: new ( test. result . kind . report ( ) ) ) ;
338338 table. add_row ( row) ;
339339 }
340340
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ impl TestSummaryReport {
114114
115115 if self . is_detailed {
116116 row. add_cell ( Cell :: new ( suite_path) ) ;
117- row. add_cell ( Cell :: new ( format ! ( "{:.2?}" , suite. duration) . to_string ( ) ) ) ;
117+ row. add_cell ( Cell :: new ( format ! ( "{:.2?}" , suite. duration) ) ) ;
118118 }
119119
120120 table. add_row ( row) ;
You can’t perform that action at this time.
0 commit comments