From 00541b0bcba6b2748faee0bff39a7a2160b34556 Mon Sep 17 00:00:00 2001
From: Hugo Trentesaux <hugo@trentesaux.fr>
Date: Mon, 6 Jun 2022 21:16:03 +0200
Subject: [PATCH] fix(cucumber) english correction

replace "founds" by "funds"
---
 .../cucumber-features/account_creation.feature     | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/end2end-tests/cucumber-features/account_creation.feature b/end2end-tests/cucumber-features/account_creation.feature
index e3df0d149..dd39150d7 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
-- 
GitLab