Skip to content

Commit 0395362

Browse files
committed
[rb] Fix RuboCop double quotes offenses
1 parent 47a2730 commit 0395362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rb/lib/selenium/webdriver/common/selenium_manager.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def driver_path(options)
4747
end
4848
if options.respond_to?(:binary) && !options.binary.nil?
4949
command << '--browser-path'
50-
command << options.binary.gsub("\\", "\\\\\\")
50+
command << options.binary.gsub('\\', '\\\\\\')
5151
end
5252
command << '--debug' if WebDriver.logger.debug?
5353

0 commit comments

Comments
 (0)