File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -315,8 +315,8 @@ def test_sh_show_command
315315
316316 def test_sh_if_a_command_exits_with_error_status_its_full_output_is_printed
317317 verbose false do
318- standard_output = ' Some output'
319- standard_error = ' Some error'
318+ standard_output = " Some output"
319+ standard_error = " Some error"
320320 shell_command = "ruby -e\" puts '#{ standard_output } ';STDERR.puts '#{ standard_error } ';exit false\" "
321321 actual_both = capture_subprocess_io do
322322 begin
@@ -342,13 +342,13 @@ def test_sh_if_a_command_exits_with_error_status_sh_echoes_it_fully
342342 end
343343
344344 def assert_echoes_fully
345- long_string = ' 1234567890' * 10
345+ long_string = " 1234567890" * 10
346346 shell_command = "ruby -e\" '#{ long_string } ';exit false\" "
347347 capture_subprocess_io do
348348 begin
349349 sh shell_command
350350 rescue => ex
351- assert_match ' Command failed with status' , ex . message
351+ assert_match " Command failed with status" , ex . message
352352 assert_match shell_command , ex . message
353353 else
354354 flunk
You can’t perform that action at this time.
0 commit comments