aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-08-18 20:41:03 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-08-18 20:41:03 -0300
commit5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6 (patch)
treeca1d1539040eec1e211c8a13f2f9c4d12384f8c1 /actionview/test
parent9cb4d3e03b02576e9f2381879e0818364a84b76e (diff)
downloadrails-5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6.tar.gz
rails-5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6.tar.bz2
rails-5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6.zip
Removed warning
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/activerecord/controller_runtime_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/activerecord/controller_runtime_test.rb b/actionview/test/activerecord/controller_runtime_test.rb
index b5bfcf12a3..469adff39a 100644
--- a/actionview/test/activerecord/controller_runtime_test.rb
+++ b/actionview/test/activerecord/controller_runtime_test.rb
@@ -18,7 +18,7 @@ class ControllerRuntimeLogSubscriberTest < ActionController::TestCase
def create
ActiveRecord::LogSubscriber.runtime += 100
- project = Project.last
+ Project.last
redirect_to "/"
end