[rubygems/rubygems] util/rubocop -A --only Layout/SpaceBeforeSemicolon

https://github.com/rubygems/rubygems/commit/c92c6d8e85
This commit is contained in:
Hiroshi SHIBATA 2023-03-16 12:01:04 +09:00
Родитель 4b285e5c6f
Коммит f8daae91c4
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -105,8 +105,8 @@ class TestGemDependency < Gem::TestCase
def test_equals_tilde_object
o = Object.new
def o.name ; "a" end
def o.version ; "0" end
def o.name; "a" end
def o.version; "0" end
assert_match dep("a"), o
end