diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-12-03 15:28:59 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2016-12-03 15:28:59 +0900 |
commit | d71f289fb29d7818620725346ed42ea6952708fa (patch) | |
tree | dd6a495483a386d9cf1da0d20581bd4b5c3b81f0 /actionpack/test | |
parent | 4e73ffa9b45904492815f8f67d4695ef719e0350 (diff) | |
download | rails-d71f289fb29d7818620725346ed42ea6952708fa.tar.gz rails-d71f289fb29d7818620725346ed42ea6952708fa.tar.bz2 rails-d71f289fb29d7818620725346ed42ea6952708fa.zip |
stop using removed `render :text`
Follow up to 79a5ea9eadb4d43b62afacedc0706cbe88c54496
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/routing/ipv6_redirect_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/routing/ipv6_redirect_test.rb b/actionpack/test/dispatch/routing/ipv6_redirect_test.rb index 4987ed84e4..179aee9ba7 100644 --- a/actionpack/test/dispatch/routing/ipv6_redirect_test.rb +++ b/actionpack/test/dispatch/routing/ipv6_redirect_test.rb @@ -7,7 +7,7 @@ class IPv6IntegrationTest < ActionDispatch::IntegrationTest class ::BadRouteRequestController < ActionController::Base include Routes.url_helpers def index - render text: foo_path + render plain: foo_path end def foo |