Closed colorbox closed 1 year ago
There are some tests fail with messages below.
SSHKit::TestConfiguration test_nil_deprecation_output ERROR (0.00s) Minitest::UnexpectedError: NameError: uninitialized constant SSHKit::DeprecationLogger::Set Did you mean? Net /Users/colorbox/.ghq/github.com/capistrano/sshkit/lib/sshkit/deprecation_logger.rb:5:in `initialize' /Users/colorbox/.ghq/github.com/capistrano/sshkit/lib/sshkit/configuration.rb:21:in `new' /Users/colorbox/.ghq/github.com/capistrano/sshkit/lib/sshkit/configuration.rb:21:in `deprecation_output=' /Users/colorbox/.ghq/github.com/capistrano/sshkit/test/unit/test_configuration.rb:25:in `test_nil_deprecation_output'
This PR add require 'set' to avoid raise NameError.
require 'set'
Perfect, thanks for the fix!
There are some tests fail with messages below.
This PR add
require 'set'
to avoid raise NameError.