aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_testing/test_helpers/screenshot_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/system_testing/test_helpers/screenshot_helper.rb')
-rw-r--r--actionpack/lib/system_testing/test_helpers/screenshot_helper.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/actionpack/lib/system_testing/test_helpers/screenshot_helper.rb b/actionpack/lib/system_testing/test_helpers/screenshot_helper.rb
index a74ebb8cae..eeade229df 100644
--- a/actionpack/lib/system_testing/test_helpers/screenshot_helper.rb
+++ b/actionpack/lib/system_testing/test_helpers/screenshot_helper.rb
@@ -30,7 +30,7 @@ module SystemTesting
end
def find_image
- if ENV['CAPYBARA_INLINE_SCREENSHOT'] == 'artifact'
+ if ENV["CAPYBARA_INLINE_SCREENSHOT"] == "artifact"
"\e]1338;url=artifact://#{image_path}\a"
else
name = inline_base64(File.basename(image_path))
@@ -40,9 +40,8 @@ module SystemTesting
end
def inline_base64(path)
- Base64.encode64(path).gsub("\n",'')
+ Base64.encode64(path).gsub("\n", "")
end
end
end
end
-