mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Removed semicolon and added space
This commit is contained in:
parent
4e34073a36
commit
08286ba171
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue