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

revert variable renaming. [ruby-dev:31001]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-07-04 06:56:16 +00:00
parent e96cd603e5
commit 50e22262fd

View file

@ -16,8 +16,8 @@ class TestRubyYield < Test::Unit::TestCase
assert_equal :a, k
assert_equal 1, v
end
h.each do |k|
assert_equal [:a, 1], k
h.each do |kv|
assert_equal [:a, 1], kv
end
end