test/ruby/test_exception.rb: prevent "assigned but unused variable"

This commit is contained in:
Yusuke Endoh 2022-02-12 00:36:01 +09:00
Родитель e92e87bf90
Коммит 118769d028
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -265,7 +265,7 @@ class TestException < Test::Unit::TestCase
v = assert_throw(:extdep, bug18562) do
require t.path
rescue rescue_all => e
rescue rescue_all
assert(false, "should not reach here")
end