1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/digest/test_digest.rb (test_eq): use descriptive assertion.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-02 05:56:35 +00:00
parent ec8b5d0625
commit fd1762b45b

2
test/digest/test_digest.rb Normal file → Executable file
View file

@ -59,7 +59,7 @@ module TestDigest
md2 = self.class::ALGO.new
md2 << "A"
assert(md1 != md2, self.class::ALGO)
assert_not_equal(md1, md2, self.class::ALGO)
md2 << "BC"