diff --git a/crates/evm/src/tests/test_instructions/test_block_information.cairo b/crates/evm/src/tests/test_instructions/test_block_information.cairo index 87d2aaf8f..23f053058 100644 --- a/crates/evm/src/tests/test_instructions/test_block_information.cairo +++ b/crates/evm/src/tests/test_instructions/test_block_information.cairo @@ -59,7 +59,7 @@ fn test_gaslimit() { // ************************************************************************* #[test] #[available_gas(5000000)] -fn test_selfbalance_eoa() { +fn test_exec_selfbalance_eoa() { // Given let native_token = deploy_native_token(); let kakarot_core = deploy_kakarot_core(native_token.contract_address); @@ -80,7 +80,7 @@ fn test_selfbalance_eoa() { #[test] #[available_gas(5000000)] -fn test_selfbalance_zero() { +fn test_exec_selfbalance_zero() { // Given let native_token = deploy_native_token(); let kakarot_core = deploy_kakarot_core(native_token.contract_address); @@ -100,7 +100,7 @@ fn test_selfbalance_zero() { #[ignore] #[test] #[available_gas(5000000)] -fn test_selfbalance_contract_account() { +fn test_exec_selfbalance_contract_account() { // Given let native_token = deploy_native_token(); let kakarot_core = deploy_kakarot_core(native_token.contract_address); diff --git a/crates/evm/src/tests/test_instructions/test_environment_information.cairo b/crates/evm/src/tests/test_instructions/test_environment_information.cairo index e218fea39..56cdd3807 100644 --- a/crates/evm/src/tests/test_instructions/test_environment_information.cairo +++ b/crates/evm/src/tests/test_instructions/test_environment_information.cairo @@ -51,7 +51,7 @@ fn test_address_nested_call() { // A (EOA) -(calls)-> B (smart contract) -(calls // ************************************************************************* #[test] #[available_gas(5000000)] -fn test_balance_eoa() { +fn test_exec_balance_eoa() { // Given let native_token = deploy_native_token(); let kakarot_core = deploy_kakarot_core(native_token.contract_address); @@ -73,7 +73,7 @@ fn test_balance_eoa() { #[test] #[available_gas(5000000)] -fn test_balance_zero() { +fn test_exec_balance_zero() { // Given let native_token = deploy_native_token(); let kakarot_core = deploy_kakarot_core(native_token.contract_address); @@ -94,7 +94,7 @@ fn test_balance_zero() { #[ignore] #[test] #[available_gas(5000000)] -fn test_balance_contract_account() { +fn test_exec_balance_contract_account() { // Given let native_token = deploy_native_token(); let kakarot_core = deploy_kakarot_core(native_token.contract_address);