diff options
author | Shuhei Kitagawa <shuhei.kitagawa@c-fo.com> | 2017-10-28 17:20:38 +0900 |
---|---|---|
committer | Shuhei Kitagawa <shuhei.kitagawa@c-fo.com> | 2017-10-28 17:20:38 +0900 |
commit | c40b4428e6d3885a8adc0ceba3aeac7599c14879 (patch) | |
tree | 3e947346605a4032d95fc28b6b38da7c624c2e81 /actionpack/test | |
parent | bf6456e05395583809f4565844a8dc088431fce7 (diff) | |
download | rails-c40b4428e6d3885a8adc0ceba3aeac7599c14879.tar.gz rails-c40b4428e6d3885a8adc0ceba3aeac7599c14879.tar.bz2 rails-c40b4428e6d3885a8adc0ceba3aeac7599c14879.zip |
removed unnecessary returns
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/caching_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb index e0300539c9..969e0edfc2 100644 --- a/actionpack/test/controller/caching_test.rb +++ b/actionpack/test/controller/caching_test.rb @@ -317,7 +317,7 @@ end class CacheHelperOutputBufferTest < ActionController::TestCase class MockController def read_fragment(name, options) - return false + false end def write_fragment(name, fragment, options) |