summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_m17n_comb.rb
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-21 11:25:12 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-21 11:25:12 +0000
commitdab8d61f1b7b5d2f61f9680926b5f82646597bdc (patch)
treec2b11f3d7297202ad7dfb236395bd870e96d67e7 /test/ruby/test_m17n_comb.rb
parent33b4dc79d31e0df9a64a82e472892a552b1f0d37 (diff)
downloadruby-dab8d61f1b7b5d2f61f9680926b5f82646597bdc.tar.gz
ruby-dab8d61f1b7b5d2f61f9680926b5f82646597bdc.tar.xz
ruby-dab8d61f1b7b5d2f61f9680926b5f82646597bdc.zip
* test/ruby/test_m17n_comb.rb (TestM17NComb#test_str_crypt): add key and salt to error message.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_m17n_comb.rb')
-rw-r--r--test/ruby/test_m17n_comb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_m17n_comb.rb b/test/ruby/test_m17n_comb.rb
index a9ca28136..37b1a687a 100644
--- a/test/ruby/test_m17n_comb.rb
+++ b/test/ruby/test_m17n_comb.rb
@@ -797,7 +797,7 @@ class TestM17NComb < Test::Unit::TestCase
next
end
t = str.crypt(salt)
- assert_equal(a(str).crypt(a(salt)), t)
+ assert_equal(a(str).crypt(a(salt)), t, "#{encdump(str)}.crypt(#{encdump(salt)})")
assert_encoding('ASCII-8BIT', t.encoding)
}
end