1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Update MetalTest for constant scoping change in 1.9

This commit is contained in:
Yehuda Katz 2009-10-15 16:33:47 -07:00
parent 4869b74aee
commit e9d6bcd19f

View file

@ -20,8 +20,8 @@ module MetalTest
class TestMiddleware < ActiveSupport::TestCase
def setup
@app = Rack::Builder.new do
use MetalMiddleware
run Endpoint.new
use MetalTest::MetalMiddleware
run MetalTest::Endpoint.new
end.to_app
end