From ac3de6debdfc4b24cfec4e9d2cbacb9068acc0cb Mon Sep 17 00:00:00 2001 From: Chris Kimpton Date: Sun, 9 Jan 2011 11:37:38 +0000 Subject: [PATCH] fix typo --- koans/about_inheritance.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/about_inheritance.rb b/koans/about_inheritance.rb index cafec34..712daca 100644 --- a/koans/about_inheritance.rb +++ b/koans/about_inheritance.rb @@ -31,7 +31,7 @@ class AboutInheritance < EdgeCase::Koan assert_equal __, Chihuahua.ancestors.include?(Object) end - def test_subcases_inherit_behavior_from_parent_class + def test_subclasses_inherit_behavior_from_parent_class chico = Chihuahua.new("Chico") assert_equal __, chico.name end