We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In test/test_rake_application.rb, after:
test/test_rake_application.rb
def test_terminal_columns old_rake_columns = ENV['RAKE_COLUMNS']
regarding the following, conditional branches which tear down the test (see here):
ensure if old_rake_columns ENV['RAKE_COLUMNS'].delete else ENV['RAKE_COLUMNS'] = old_rake_columns end end
shouldn't these branches properly be reversed (as below)?:
ensure if old_rake_columns ENV['RAKE_COLUMNS'] = old_rake_columns else ENV['RAKE_COLUMNS'].delete end end
The text was updated successfully, but these errors were encountered:
f413799
No branches or pull requests
In
test/test_rake_application.rb
, after:regarding the following, conditional branches which tear down the test (see here):
shouldn't these branches properly be reversed (as below)?:
The text was updated successfully, but these errors were encountered: