Prevent a "warning: assigned but unused variable - s2"

This commit is contained in:
Yusuke Endoh 2022-11-18 14:39:40 +09:00
Родитель bd148a2bdd
Коммит 096ffebbbf
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -540,7 +540,7 @@ class TestSocket_UNIXSocket < Test::Unit::TestCase
ENV['TMP'] = File.join(Dir.tmpdir, "äöü€")
FileUtils.mkdir_p ENV['TMP']
s1, s2 = UNIXSocket.pair
s1, = UNIXSocket.pair
assert !s1.path.empty?
assert !File.exist?(s1.path)
ensure