aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAnupam Choudhury <contact2anupam@gmail.com>2013-09-13 01:22:53 +0530
committerAnupam Choudhury <contact2anupam@gmail.com>2013-09-13 01:22:53 +0530
commit08286ba171958c48d07f40a127f2b782665ed292 (patch)
tree6f42e9679c1210ce1561fbfa94746d37041f2f65 /actionpack
parent4e34073a36209ef23a3acf6b8bf35b21deefedf7 (diff)
downloadrails-08286ba171958c48d07f40a127f2b782665ed292.tar.gz
rails-08286ba171958c48d07f40a127f2b782665ed292.tar.bz2
rails-08286ba171958c48d07f40a127f2b782665ed292.zip
Removed semicolon and added space
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/caching_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb
index a67dff5436..57b45b8f7b 100644
--- a/actionpack/test/controller/caching_test.rb
+++ b/actionpack/test/controller/caching_test.rb
@@ -20,7 +20,7 @@ class FragmentCachingMetalTest < ActionController::TestCase
@controller = FragmentCachingMetalTestController.new
@controller.perform_caching = true
@controller.cache_store = @store
- @params = { controller: 'posts', action: 'index'}
+ @params = { controller: 'posts', action: 'index' }
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@controller.params = @params
@@ -40,7 +40,7 @@ class CachingController < ActionController::Base
end
class FragmentCachingTestController < CachingController
- def some_action; end;
+ def some_action; end
end
class FragmentCachingTest < ActionController::TestCase