diff options
| author | Santiago Pastorino <santiago@wyeworks.com> | 2011-06-10 18:35:14 -0700 |
|---|---|---|
| committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-06-10 18:35:14 -0700 |
| commit | adef9764ae6987d3b19b67d1e76c4bb0e3eb7fab (patch) | |
| tree | 047486dcb1a8a5f5e38aa60641a8320fdf609c1b | |
| parent | a4ee5038c15d339774852fc09e1418746b95c019 (diff) | |
| parent | c4ddc6f693fd63ce047222c1468071a8063f210f (diff) | |
| download | rails-adef9764ae6987d3b19b67d1e76c4bb0e3eb7fab.tar.gz rails-adef9764ae6987d3b19b67d1e76c4bb0e3eb7fab.tar.bz2 rails-adef9764ae6987d3b19b67d1e76c4bb0e3eb7fab.zip | |
Merge pull request #1644 from smartinez87/warns
Remove unused variable causing warning in 1.9.3
| -rw-r--r-- | actionpack/test/abstract/abstract_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/abstract/abstract_controller_test.rb b/actionpack/test/abstract/abstract_controller_test.rb index 53712a60ec..5823e64637 100644 --- a/actionpack/test/abstract/abstract_controller_test.rb +++ b/actionpack/test/abstract/abstract_controller_test.rb @@ -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 |
