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 diff --git a/src/about_inheritance.rb b/src/about_inheritance.rb index f516cd6..73030c6 100644 --- a/src/about_inheritance.rb +++ b/src/about_inheritance.rb @@ -31,7 +31,7 @@ class AboutInheritance < EdgeCase::Koan assert_equal __(true), 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"), chico.name end