[rubygems/rubygems] Extract a `spec` variable

It's consistent with the previous test and makes print debugging easier.

https://github.com/rubygems/rubygems/commit/d7f424df16
This commit is contained in:
David Rodríguez 2024-05-30 11:37:44 +02:00 коммит произвёл git
Родитель 21f10cabb9
Коммит 5668933296
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1615,9 +1615,11 @@ class TestGem < Gem::TestCase
Gem.use_paths Gem.dir, [Gem.dir, Gem.user_dir]
spec = Gem::Dependency.new("m", "1").to_spec
assert_equal \
File.join(Gem.dir, "gems", "m-1"),
Gem::Dependency.new("m","1").to_spec.gem_dir,
spec.gem_dir,
"Wrong spec selected"
end