diff --git a/evm_loader/program/Cargo.toml b/evm_loader/program/Cargo.toml index 34fea24d7..9517db4c5 100644 --- a/evm_loader/program/Cargo.toml +++ b/evm_loader/program/Cargo.toml @@ -10,7 +10,7 @@ include = ["config/*.toml"] [features] #! The next feature defines configurations for deploys on different blockchains -## Builds NeonEVM for testing with goverment system +## Builds NeonEVM for testing with government system govertest = [] ## Builds NeonEVM for mainnet deployment mainnet = [] diff --git a/tests/eth_tx_utils.py b/tests/eth_tx_utils.py index e5ec11fb7..0803f3047 100644 --- a/tests/eth_tx_utils.py +++ b/tests/eth_tx_utils.py @@ -82,7 +82,7 @@ def get_int(a): return int.from_bytes(a, 'big') if a is None: return a - raise Exception("Invalid convertion from {} to int".format(a)) + raise Exception("Invalid conversion from {} to int".format(a)) class Trx: diff --git a/tests/test_cli.py b/tests/test_cli.py index a5887bf76..f3462b82f 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -79,7 +79,7 @@ def test_neon_elf_params(evm_loader): some_fields = ['NEON_CHAIN_ID', 'NEON_TOKEN_MINT', 'NEON_REVISION'] for field in some_fields: assert field in result, f"The field {field} is not in result {result}" - assert result[field] != "", f"The value for fiels {field} is empty" + assert result[field] != "", f"The value for field {field} is empty" def test_collect_treasury(evm_loader):