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

[rubygems/rubygems] Use assert_raise instead of assert_raises

769e87f011
This commit is contained in:
Hiroshi SHIBATA 2021-05-11 12:25:46 +09:00
parent 2c0072dec5
commit c30594bb0c
Notes: git 2021-05-12 17:25:21 +09:00
69 changed files with 410 additions and 410 deletions

View file

@ -8,7 +8,7 @@ class TestGemSourceFetchProblem < Gem::TestCase
sf = Gem::SourceFetchProblem.new source, error
e = assert_raises RuntimeError do
e = assert_raise RuntimeError do
raise sf
end