File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,15 +58,15 @@ contract ContractOneTest is DSTest {
5858 . stdout_lossy( ) ;
5959
6060 let mut cells = out. split( '|' ) ;
61- let deployment_cost: u64 = cells. nth( 22 ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
61+ let deployment_cost: u64 = cells. nth( 17 ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
6262 let deployment_size: u64 = cells. next( ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
63- let function = cells. nth( 12 ) . unwrap( ) . trim( ) ;
63+ let function = cells. nth( 25 ) . unwrap( ) . trim( ) ;
6464 let gas: u64 = cells. next( ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
6565
6666 let mut cells_zk = out_zk. split( '|' ) ;
67- let deployment_cost_zk: u64 = cells_zk. nth( 22 ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
67+ let deployment_cost_zk: u64 = cells_zk. nth( 17 ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
6868 let deployment_size_zk: u64 = cells_zk. next( ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
69- let function_zk = cells_zk. nth( 12 ) . unwrap( ) . trim( ) ;
69+ let function_zk = cells_zk. nth( 25 ) . unwrap( ) . trim( ) ;
7070 let gas_zk: u64 = cells_zk. next( ) . unwrap( ) . trim( ) . parse( ) . unwrap( ) ;
7171
7272 assert!( deployment_cost_zk > deployment_cost) ;
You can’t perform that action at this time.
0 commit comments