Merge pull request #1644 from smartinez87/warns

Remove unused variable causing warning in 1.9.3
This commit is contained in:
Santiago Pastorino 2011-06-10 18:35:14 -07:00
commit adef9764ae
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ module AbstractController
class TestLayouts < ActiveSupport::TestCase
test "layouts are included" do
controller = Me4.new
result = controller.process(:index)
controller.process(:index)
assert_equal "Me4 Enter : Hello from me4/index.erb : Exit", controller.response_body
end
end