Skip to content

Commit 38d39d7

Browse files
committed
Fix DEPRECATION WARNING for rails 4.0.0. ActionController::Integration to ActionDispatch::Integration.
1 parent d1140c3 commit 38d39d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tasks/jasmine-rails_tasks.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace :spec do
1717
ActionView::AssetPaths.send :include, JasmineRails::OfflineAssetPaths
1818
end
1919
spec_filter = ENV['SPEC']
20-
app = ActionController::Integration::Session.new(Rails.application)
20+
app = ActionDispatch::Integration::Session.new(Rails.application)
2121
path = JasmineRails.route_path
2222
app.get path, :console => 'true', :spec => spec_filter
2323
JasmineRails::OfflineAssetPaths.disabled = true

0 commit comments

Comments
 (0)