From b3226809ad89f1a4a87d5d19847b2dc6654dc9ca Mon Sep 17 00:00:00 2001 From: Robert Osborne Date: Mon, 29 Jun 2009 21:08:36 -0400 Subject: [PATCH] method name test_if_then_else_statements was duplicated, overwriting the first def. --- koans/about_control_statements.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/about_control_statements.rb b/koans/about_control_statements.rb index d2b75ad..8ecf88e 100644 --- a/koans/about_control_statements.rb +++ b/koans/about_control_statements.rb @@ -11,7 +11,7 @@ class AboutControlStatements < EdgeCase::Koan assert_equal __, result end - def test_if_then_else_statements + def test_if_then_statements result = :default_value if true result = :true_value