Skip to content

Commit 6c0f399

Browse files
committedJun 25, 2014
Fix for Ruby tests on Windows + MRI
1 parent 5b97733 commit 6c0f399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎rb/spec/integration/selenium/webdriver/spec_support/rack_server.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def start_windows
8686
# For IE, the combination of Windows + FFI + MRI seems to cause a
8787
# deadlock with the get() call and the server thread.
8888
# Workaround by running this file in a subprocess.
89-
@process = ChildProcess.build("ruby", "-r", "rubygems", __FILE__, @path, @port).start
89+
@process = ChildProcess.build("ruby", "-r", "rubygems", __FILE__, @path, @port.to_s).start
9090
else
9191
start_threaded
9292
end

0 commit comments

Comments
 (0)
Please sign in to comment.