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

[rubygems/rubygems] Fixed assertion arguments

It is `assert_eqal(expected, actual)`.

https://github.com/rubygems/rubygems/commit/1d6197a090
This commit is contained in:
Nobuyoshi Nakada 2019-09-26 19:38:56 +09:00
parent 170d154059
commit f8104d9e9f
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -1122,7 +1122,7 @@ class TestGemPackage < Gem::Package::TarTestCase
def test_gem_attr
package = Gem::Package.new(@gem)
assert_equal(package.gem.path, @gem)
assert_equal(@gem, package.gem.path)
end
def test_spec_from_io