summaryrefslogtreecommitdiffstats
path: root/bank-eiffel/tests/test_account.e
diff options
context:
space:
mode:
Diffstat (limited to 'bank-eiffel/tests/test_account.e')
-rw-r--r--bank-eiffel/tests/test_account.e6
1 files changed, 3 insertions, 3 deletions
diff --git a/bank-eiffel/tests/test_account.e b/bank-eiffel/tests/test_account.e
index 1820c45..7f16cc7 100644
--- a/bank-eiffel/tests/test_account.e
+++ b/bank-eiffel/tests/test_account.e
@@ -15,13 +15,13 @@ inherit
15 15
16feature -- Test routines 16feature -- Test routines
17 17
18 CREATE_ACCOUNT 18 CREATE_EDIT_ACCOUNT
19 -- New test routine
20 local 19 local
21 person1: PERSON 20 person1: PERSON
22 account: ACCOUNT 21 account: ACCOUNT
23 do 22 do
24 create person1.make ("VORNAME", "NACHNAME") 23 create person1.make ("SOME_SURNAME", "SOME_FIRSTNAME")
24 create account.make (person1)
25 --assert ("not_implemented", False) 25 --assert ("not_implemented", False)
26 end 26 end
27 27