Skip to content

Commit 94248ff

Browse files
committed
Use MiniTest::Assertions instead of Test::Unit::Assertions
1 parent 686f94e commit 94248ff

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

actionpack/lib/action_dispatch/testing/integration.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
require 'active_support/core_ext/object/inclusion'
55
require 'active_support/core_ext/object/try'
66
require 'rack/test'
7-
require 'test/unit/assertions'
87

98
module ActionDispatch
109
module Integration #:nodoc:
@@ -127,7 +126,7 @@ def delete_via_redirect(path, parameters = nil, headers = nil)
127126
class Session
128127
DEFAULT_HOST = "www.example.com"
129128

130-
include Test::Unit::Assertions
129+
include MiniTest::Assertions
131130
include TestProcess, RequestHelpers, Assertions
132131

133132
%w( status status_message headers body redirect? ).each do |method|

0 commit comments

Comments
 (0)