diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-12-07 11:30:33 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-12-07 11:30:33 +0000 |
commit | 8f0e8ee8bd31359db1aefcab98cac2d35c5b85dc (patch) | |
tree | ef02234e92571af358f713985e3d9b22f5b92d15 /t | |
parent | 5d26b821d3b6842ab458146dab6df3d64392969c (diff) |
The http/https alert is no longer special - allow it to be tested.
Diffstat (limited to 't')
-rwxr-xr-x | t/test-custodian-testfactory.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/t/test-custodian-testfactory.rb b/t/test-custodian-testfactory.rb index 8ba315e..e8e7d27 100755 --- a/t/test-custodian-testfactory.rb +++ b/t/test-custodian-testfactory.rb @@ -231,9 +231,7 @@ class TestTestFactory < Test::Unit::TestCase # # NOTE: Skip the DNS test - it is more complex. # - # Skip the HTTP test because the HTTPS test is a super-set. - # - next if ( tst =~ /^(dns|http)$/ ) + next if ( tst =~ /^(dns)$/ ) # normal test_one = "http://foo/ must run #{tst} on 1234" |