@@ -273,7 +273,7 @@ mod tests {
273
273
eip7002:: { WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS , WITHDRAWAL_REQUEST_PREDEPLOY_CODE } ,
274
274
eip7685:: EMPTY_REQUESTS_HASH ,
275
275
} ;
276
- use alloy_primitives:: { b256, bytes , fixed_bytes, keccak256, Bytes , TxKind , B256 } ;
276
+ use alloy_primitives:: { b256, fixed_bytes, keccak256, Bytes , TxKind , B256 } ;
277
277
use reth_chainspec:: { ChainSpecBuilder , ForkCondition } ;
278
278
use reth_evm:: execute:: {
279
279
BasicBlockExecutorProvider , BatchExecutor , BlockExecutorProvider , Executor ,
@@ -1085,9 +1085,9 @@ mod tests {
1085
1085
let receipt = receipts. first ( ) . unwrap ( ) ;
1086
1086
assert ! ( receipt. success) ;
1087
1087
1088
- let request = requests. first ( ) . unwrap ( ) ;
1089
- // TODO: must be empty? @onbjerg
1090
- assert_eq ! ( request , & bytes! ( "00" ) ) ; // todo: placeholder
1088
+ assert ! ( requests[ 0 ] . is_empty ( ) , "there should be no deposits" ) ;
1089
+ assert ! ( !requests [ 1 ] . is_empty ( ) , "there should be a withdrawal" ) ;
1090
+ assert ! ( requests [ 2 ] . is_empty ( ) , "there should be no consolidations" ) ;
1091
1091
}
1092
1092
1093
1093
#[ test]
0 commit comments