aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-08 18:47:42 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-08 18:47:42 +0000
commit4db4d80357a40690531cd393a79ec6f8f8484cd8 (patch)
treed298e6772c0dfe4191c737f8603139214034ffdc /bootstraptest
parentcbff149e47a370762f6e0de6bb00d995c06c5909 (diff)
downloadruby-4db4d80357a40690531cd393a79ec6f8f8484cd8.tar.gz
fix previous commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_knownbug.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 99a813af4f..47c188a8dc 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -60,6 +60,6 @@ assert_equal 'ok', %q{
assert_equal 'ok', %q{
s1 = "\x81\x41".force_encoding("sjis")
s2 = "\x81\x61".force_encoding("sjis")
- s1.casecmp(s2) ? :ng : :ok
+ s1.casecmp(s2) == 0 ? :ng : :ok
}