Fix some warnings

This commit is contained in:
Vipul A M 2013-07-02 11:07:39 +05:30
parent ec3e2c2ff8
commit b6648df1a9
2 changed files with 1 additions and 2 deletions

View File

@ -156,7 +156,6 @@ class BaseTest < Test::Unit::TestCase
class TestMiddlewareContentLength < Sinatra::Base
get '/forward' do
res = forward
'From after explicit forward!'
end
end

View File

@ -221,7 +221,7 @@ module IntegrationHelper
base_port = 5000 + Process.pid % 100
Sinatra::Base.server.each_with_index do |server, index|
Server.run(server, 5000+index)
Server.run(server, base_port+index)
end
end
end