diff --git a/end2end-tests/cucumber-features/account_creation.feature b/end2end-tests/cucumber-features/account_creation.feature index e3df0d149011a0c8575eb49cc0f6c25284a0d9a6..dd39150d7d2d47d43ff041c65f0bba14cca978fa 100644 --- a/end2end-tests/cucumber-features/account_creation.feature +++ b/end2end-tests/cucumber-features/account_creation.feature @@ -1,7 +1,7 @@ Feature: Balance transfer - Scenario: Create a new account with enough founds - When alice send 5 ÄžD to dave + Scenario: Create a new account with enough funds + When alice sends 5 ÄžD to dave Then dave should have 5 ÄžD When 1 block later """ @@ -9,13 +9,13 @@ Feature: Balance transfer """ Then dave should have 2 ÄžD - Scenario: Create a new account without enough founds then retry with enough founds - When alice send 2 ÄžD to eve + Scenario: Create a new account without enough funds then retry with enough funds + When alice sends 2 ÄžD to eve Then eve should have 2 ÄžD When 1 block later """ - The blockchain should automatically destroy Evec account - because Eve not have enough founds to pay the new account tax + The blockchain should automatically destroy Eve account + because Eve does not have enough funds to pay the new account tax """ Then eve should have 0 ÄžD When alice send 5 ÄžD to eve @@ -27,7 +27,7 @@ Feature: Balance transfer Then eve should have 2 ÄžD @ignoreErrors - Scenario: Create a new account without any founds + Scenario: Create a new account without any funds Then eve should have 0 ÄžD When eve send 0 ÄžD to alice Then alice should have 10 ÄžD