Skip to content

Commit

Permalink
fix: fix test name
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix committed Oct 18, 2023
1 parent 20106bd commit ad67f3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand All @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit ad67f3c

Please sign in to comment.