Skip to content

Commit

Permalink
Add missing require for String#strip_heredoc
Browse files Browse the repository at this point in the history
This method is being used in `#xml_http_request`, but was not properly
required. This causes `NoMethodError` on projects that are doing
integration test.
  • Loading branch information
sikachu committed Apr 17, 2015
1 parent 1881a77 commit 3a20e83
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions actionpack/lib/action_dispatch/testing/integration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
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'

Expand Down

0 comments on commit 3a20e83

Please sign in to comment.