diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-18 20:41:03 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-18 20:41:03 -0300 |
commit | 5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6 (patch) | |
tree | ca1d1539040eec1e211c8a13f2f9c4d12384f8c1 /actionview | |
parent | 9cb4d3e03b02576e9f2381879e0818364a84b76e (diff) | |
download | rails-5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6.tar.gz rails-5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6.tar.bz2 rails-5e6c45a7dbbda18a688e5e5227ed36260ad4c1b6.zip |
Removed warning
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/test/activerecord/controller_runtime_test.rb | 2 |
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 |