summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortotycro <totycro@unknown-horizons.org>2011-06-26 12:59:20 +0200
committertotycro <totycro@unknown-horizons.org>2011-06-26 12:59:20 +0200
commit067c154edb5280ce6f1a296aa18c0327ac9eb0f8 (patch)
tree464ff6451eccc1afa5f4eccf7cef53834eb1f3f7
parent3540050a6efc1415a775043139c529e5820983b9 (diff)
downloadfoop-067c154edb5280ce6f1a296aa18c0327ac9eb0f8.tar.gz
foop-067c154edb5280ce6f1a296aa18c0327ac9eb0f8.tar.bz2
foop-067c154edb5280ce6f1a296aa18c0327ac9eb0f8.zip
Tests angepasst um Typfehler beim Kompilieren wegem letztem Commit zu fixen
-rw-r--r--bank-eiffel/tests/test_account.e12
1 files changed, 6 insertions, 6 deletions
diff --git a/bank-eiffel/tests/test_account.e b/bank-eiffel/tests/test_account.e
index 02d22a9..6e49132 100644
--- a/bank-eiffel/tests/test_account.e
+++ b/bank-eiffel/tests/test_account.e
@@ -183,11 +183,11 @@ feature -- Test routines
183 assert("STUDENTACCOUNT_ONE_STUDENT_ONLY_1", False) 183 assert("STUDENTACCOUNT_ONE_STUDENT_ONLY_1", False)
184 when 3 then 184 when 3 then
185 create account.make(student, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0]) 185 create account.make(student, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0])
186 account.add_authorized_signer (person) 186 --account.add_authorized_signer (person)
187 assert("STUDENTACCOUNT_ONE_STUDENT_ONLY_2", False) 187 assert("STUDENTACCOUNT_ONE_STUDENT_ONLY_2", False)
188 when 4 then 188 when 4 then
189 create account.make(student, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0]) 189 create account.make(student, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0])
190 account.add_authorized_signer (retiree) 190 --daccount.add_authorized_signer (retiree)
191 assert("STUDENTACCOUNT_ONE_STUDENT_ONLY_3", False) 191 assert("STUDENTACCOUNT_ONE_STUDENT_ONLY_3", False)
192 else 192 else
193 end 193 end
@@ -235,12 +235,12 @@ feature -- Test routines
235 assert("RETIREEACCOUNT_ONE_RETIREE_ONLY_1", False) 235 assert("RETIREEACCOUNT_ONE_RETIREE_ONLY_1", False)
236 when 3 then 236 when 3 then
237 create account.make(retiree, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0]) 237 create account.make(retiree, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0])
238 account.add_authorized_signer (person) 238 --account.add_authorized_signer (person)
239 assert("RETIREEACCOUNT_ONE_RETIREE_ONLY_2", False) 239 --assert("RETIREEACCOUNT_ONE_RETIREE_ONLY_2", False)
240 when 4 then 240 when 4 then
241 create account.make(retiree, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0]) 241 create account.make(retiree, 0.01, 0.02, -50.0, [0.01, 0.022], [0.01, 0.02], [-100.0, -50.0])
242 account.add_authorized_signer (student) 242 --account.add_authorized_signer (student)
243 assert("RETIREEACCOUNT_ONE_RETIREE_ONLY_3", False) 243 --assert("RETIREEACCOUNT_ONE_RETIREE_ONLY_3", False)
244 else 244 else
245 end 245 end
246 246