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

* same as the previous commit.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nahi 2003-09-05 11:34:55 +00:00
parent 5b21dbe956
commit d833e3db01
2 changed files with 3 additions and 3 deletions

View file

@ -203,7 +203,7 @@ class TestIterator < Test::Unit::TestCase
def test_proc
assert_instance_of(Proc, lambda{})
assert_instance_of(Proc, Proc.new{})
lambda{|a|assert(a==1)}.call(1)
lambda{|a|assert_equal(a, 1)}.call(1)
end
def test_block