diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-12-03 11:16:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-03 11:16:54 +0100 |
commit | 66076f381aad7383568bf28ae1279b0bc570319c (patch) | |
tree | cc86a725f7dafef4c52a065e75273d20dda8e97a /actionpack | |
parent | 26ea54aa7d1b0be66d5b99cab6e2f64c80fe4757 (diff) | |
parent | d71f289fb29d7818620725346ed42ea6952708fa (diff) | |
download | rails-66076f381aad7383568bf28ae1279b0bc570319c.tar.gz rails-66076f381aad7383568bf28ae1279b0bc570319c.tar.bz2 rails-66076f381aad7383568bf28ae1279b0bc570319c.zip |
Merge pull request #27258 from y-yagi/stop_using_removed_render_text
stop using removed `render :text`
Diffstat (limited to 'actionpack')
-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 |