Skip to content

Commit

Permalink
Merge pull request #444 from deivid-rodriguez/rubocop
Browse files Browse the repository at this point in the history
Correct RuboCop offenses
  • Loading branch information
hsbt committed Aug 16, 2022
2 parents 0157758 + 3e955f2 commit 30fbf4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_rake_file_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ def test_sh_show_command

def test_sh_if_a_command_exits_with_error_status_its_full_output_is_printed
verbose false do
standard_output = 'Some output'
standard_error = 'Some error'
standard_output = "Some output"
standard_error = "Some error"
shell_command = "ruby -e\"puts '#{standard_output}';STDERR.puts '#{standard_error}';exit false\""
actual_both = capture_subprocess_io do
begin
Expand All @@ -342,13 +342,13 @@ def test_sh_if_a_command_exits_with_error_status_sh_echoes_it_fully
end

def assert_echoes_fully
long_string = '1234567890' * 10
long_string = "1234567890" * 10
shell_command = "ruby -e\"'#{long_string}';exit false\""
capture_subprocess_io do
begin
sh shell_command
rescue => ex
assert_match 'Command failed with status', ex.message
assert_match "Command failed with status", ex.message
assert_match shell_command, ex.message
else
flunk
Expand Down

0 comments on commit 30fbf4e

Please sign in to comment.