aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/renderers_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/renderers_test.rb')
-rw-r--r--actionpack/test/controller/renderers_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/renderers_test.rb b/actionpack/test/controller/renderers_test.rb
index 122f5be549..ccc700d79c 100644
--- a/actionpack/test/controller/renderers_test.rb
+++ b/actionpack/test/controller/renderers_test.rb
@@ -10,7 +10,7 @@ class RenderersTest < ActionController::TestCase
end
end
class JsonRenderable
- def as_json(options={})
+ def as_json(options = {})
hash = { a: :b, c: :d, e: :f }
hash.except!(*options[:except]) if options[:except]
hash