Fix Final Spec Tests!

This commit is contained in:
Mark Mackey
2024-05-13 11:36:35 +03:00
parent d9200a9837
commit 7e57ab3af2

View File

@@ -99,17 +99,18 @@ fn operations_execution_layer_withdrawal_reqeusts() {
}
#[test]
#[cfg(not(feature = "fake_crypto"))]
fn operations_deposit_receipts() {
OperationsHandler::<MinimalEthSpec, DepositReceipt>::default().run();
OperationsHandler::<MainnetEthSpec, DepositReceipt>::default().run();
}
//TODO(electra) enable once tests are added for these
// #[test]
// fn operations_consolidations() {
// OperationsHandler::<MinimalEthSpec, SignedConsolidation>::default().run();
// OperationsHandler::<MainnetEthSpec, SignedConsolidation>::default().run();
// }
#[test]
fn operations_consolidations() {
OperationsHandler::<MinimalEthSpec, SignedConsolidation>::default().run();
//TODO(electra): re-enable mainnet once they make tests for this
//OperationsHandler::<MainnetEthSpec, SignedConsolidation>::default().run();
}
#[test]
fn operations_bls_to_execution_change() {