Fixed missed test case.
authorJeffrey Murray <a.separate.first@gmail.com>
Sat, 12 Mar 2011 01:50:39 +0000 (17:50 -0800)
committerJeffrey Murray <a.separate.first@gmail.com>
Sat, 12 Mar 2011 01:50:39 +0000 (17:50 -0800)
koans/about_strings.rb

index 48dfa2d..771ff8b 100644 (file)
@@ -168,7 +168,7 @@ in_ruby_version("1.8") do
 
     def test_in_ruby_1_9_you_can_get_a_single_character_from_a_string
       string = "Bacon, lettuce and tomato"
-      assert_equal "a", string[1]
+      assert_equal "__", string[1]
 
       # Surprised?
     end