Fix minor typo in method name: strings ARE unique objects
authorJeff Casimir <jeff@casimircreative.com>
Wed, 12 Jan 2011 19:12:15 +0000 (14:12 -0500)
committerMarc Peabody <marc@edgecase.com>
Wed, 12 Jan 2011 20:44:56 +0000 (15:44 -0500)
koans/about_strings.rb
src/about_strings.rb

index 509d26c..27ccf72 100644 (file)
@@ -183,7 +183,7 @@ EOS
     assert_equal __, words.join(" ")
   end
 
-  def test_strings_are_not_unique_objects
+  def test_strings_are_unique_objects
     a = "a string"
     b = "a string"
 
index deba2c8..65738fc 100644 (file)
@@ -183,7 +183,7 @@ EOS
     assert_equal __("Now is the time"), words.join(" ")
   end
 
-  def test_strings_are_not_unique_objects
+  def test_strings_are_unique_objects
     a = "a string"
     b = "a string"