From 7c52931392923b866dab0a47e52781adb081374c Mon Sep 17 00:00:00 2001 From: Jonathan Castello Date: Sat, 21 Aug 2010 01:33:13 -0700 Subject: [PATCH] With 'test_in_ruby_1_8_single_characters_are_represented_by_strings', changed the name to use '1.9', since it's in an in_ruby_version("1.9") block. (Confused me for a good while.) --- koans/about_strings.rb | 2 +- src/about_strings.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koans/about_strings.rb b/koans/about_strings.rb index 3d9037b..87bb4ec 100644 --- a/koans/about_strings.rb +++ b/koans/about_strings.rb @@ -156,7 +156,7 @@ EOS end in_ruby_version("1.9") do - def test_in_ruby_1_8_single_characters_are_represented_by_strings + def test_in_ruby_1_9_single_characters_are_represented_by_strings assert_equal __, ?a assert_equal __, ?a == 97 end diff --git a/src/about_strings.rb b/src/about_strings.rb index 3dd0725..106ba79 100644 --- a/src/about_strings.rb +++ b/src/about_strings.rb @@ -156,7 +156,7 @@ EOS end in_ruby_version("1.9") do - def test_in_ruby_1_8_single_characters_are_represented_by_strings + def test_in_ruby_1_9_single_characters_are_represented_by_strings assert_equal __('a'), ?a assert_equal __(false), ?a == 97 end