summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <[email protected]>2024-07-18 19:53:56 +0200
committergit <[email protected]>2024-07-18 19:23:06 +0000
commit50e7c8f05190656f674514e7c3abb8ad08e12bdb (patch)
treea189b89065e279a8f6be66d882449aec9d2dde73
parent104dad3dd0de02e3282104f7c6686302c2d92194 (diff)
[rubygems/rubygems] Fix unused variable warning when running RubyGems tests
https://github.com/rubygems/rubygems/commit/155d8fd051
-rw-r--r--test/rubygems/test_gem_remote_fetcher_local_ssl_server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rubygems/test_gem_remote_fetcher_local_ssl_server.rb b/test/rubygems/test_gem_remote_fetcher_local_ssl_server.rb
index 7ccc1e7883..ad5be1a033 100644
--- a/test/rubygems/test_gem_remote_fetcher_local_ssl_server.rb
+++ b/test/rubygems/test_gem_remote_fetcher_local_ssl_server.rb
@@ -166,7 +166,7 @@ PeIQQkFng2VVot/WAQbv3ePqWq07g1BBcwIBAg==
ensure
client.close
end
- rescue OpenSSL::SSL::SSLError => e
+ rescue OpenSSL::SSL::SSLError
# Ignore SSL errors because we're testing them implicitly
end
end