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 | 78eef09ac8568390725e3d472f0bfe1abc1e6d09 (patch) | |
tree | 8342a0fcec419c121466e73c427bedd1cd97bbdc /t | |
parent | 68dd7527495e1f8c7bce41320f8fb9a3bde10939 (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" |