Remove useless test function.

This commit is contained in:
Tom Clegg 2015-07-21 21:40:20 -04:00
parent 2583ce55a5
commit a6a1e27ac7
1 changed files with 0 additions and 12 deletions

View File

@ -235,18 +235,6 @@ func TestSimpleHttpTLS(t *testing.T) {
test.AssertEquals(t, logs[0].Priority, syslog.LOG_NOTICE)
}
func TestSimpleHttpRedirect(t *testing.T) {
va := NewValidationAuthorityImpl(true)
va.DNSResolver = &mocks.MockDNS{}
stopChan := make(chan bool, 1)
waitChan := make(chan bool, 1)
go simpleSrv(t, expectedToken, stopChan, waitChan, true)
defer func() { stopChan <- true }()
<-waitChan
}
func TestSimpleHttp(t *testing.T) {
va := NewValidationAuthorityImpl(true)
va.DNSResolver = &mocks.MockDNS{}