fix class name typo.

This commit is contained in:
Yves Senn 2016-02-16 11:57:06 +01:00
parent 84c18246bc
commit f41b90fee3
2 changed files with 3 additions and 3 deletions

@ -52,7 +52,7 @@ class Railtie < Rails::Railtie # :nodoc:
end
end
ActionDispatch::IntegrationTest.send :include, ActionMailer::TestCase::ClearTestDeliviers
ActionDispatch::IntegrationTest.send :include, ActionMailer::TestCase::ClearTestDeliveries
end
end

@ -11,7 +11,7 @@ def initialize(name)
end
class TestCase < ActiveSupport::TestCase
module ClearTestDeliviers
module ClearTestDeliveries
extend ActiveSupport::Concern
included do
@ -114,6 +114,6 @@ def read_fixture(action)
end
include Behavior
include ClearTestDeliviers
include ClearTestDeliveries
end
end