Skip to content

Commit

Permalink
Maintenance: UserAgent integration test fails because previously non …
Browse files Browse the repository at this point in the history
…but now existing host URL 'existing.host'.
  • Loading branch information
thorsteneckel committed Nov 19, 2019
1 parent 4cc3ed6 commit 7ca577a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/user_agent_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class UserAgentTest < ActiveSupport::TestCase

# get / 0
result = UserAgent.request(
'http://not.existing.host/test.php',
'http://not.existing.host.tld/test.php',
)
assert(result)
assert_equal(false, result.success?)
Expand All @@ -414,7 +414,7 @@ class UserAgentTest < ActiveSupport::TestCase

# ftp / 0
result = UserAgent.request(
'ftp://not.existing.host/test.bin',
'ftp://not.existing.host.tld/test.bin',
)
assert(result)
assert_equal(false, result.success?)
Expand Down

0 comments on commit 7ca577a

Please sign in to comment.