diff options
author | Hiroshi SHIBATA <[email protected]> | 2021-05-11 12:25:46 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-05-12 17:24:43 +0900 |
commit | c30594bb0c23b5b23c3d3ca490e3cac34d09c1f9 (patch) | |
tree | f926189d35a363d9ad71b8e0359aa7a9662fec9f /test/rubygems/test_gem_source_git.rb | |
parent | 2c0072dec58cb5f99a072a3b2dd341974ec84887 (diff) |
[rubygems/rubygems] Use assert_raise instead of assert_raises
https://github.com/rubygems/rubygems/commit/769e87f011
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4491
Diffstat (limited to 'test/rubygems/test_gem_source_git.rb')
-rw-r--r-- | test/rubygems/test_gem_source_git.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/test_gem_source_git.rb b/test/rubygems/test_gem_source_git.rb index a42424b98a..749859b024 100644 --- a/test/rubygems/test_gem_source_git.rb +++ b/test/rubygems/test_gem_source_git.rb @@ -186,7 +186,7 @@ class TestGemSourceGit < Gem::TestCase source.cache - e = assert_raises Gem::Exception do + e = assert_raise Gem::Exception do capture_subprocess_io { source.rev_parse } end |