mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add missing require for String#strip_heredoc
This method is being used in `#xml_http_request`, but was not properly required. This causes `NoMethodError` on projects that are doing integration test.
This commit is contained in:
parent
1881a7715d
commit
3a20e83795
1 changed files with 1 additions and 0 deletions
|
@ -2,6 +2,7 @@ require 'stringio'
|
|||
require 'uri'
|
||||
require 'active_support/core_ext/kernel/singleton_class'
|
||||
require 'active_support/core_ext/object/try'
|
||||
require 'active_support/core_ext/string/strip'
|
||||
require 'rack/test'
|
||||
require 'minitest'
|
||||
|
||||
|
|
Loading…
Reference in a new issue