1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add missing require for IPAddr

Ref: https://travis-ci.org/rails/rails/jobs/469956825#L1694
This commit is contained in:
yuuji.yaginuma 2018-12-24 15:20:55 +09:00
parent 4eead6633d
commit 52a692fed0

View file

@ -1,6 +1,7 @@
# frozen_string_literal: true
require "abstract_unit"
require "ipaddr"
class HostAuthorizationTest < ActionDispatch::IntegrationTest
App = -> env { [200, {}, %w(Success)] }