remove unneeded debug logs in drop tests

This commit is contained in:
Lucas Clemente
2016-09-01 12:17:43 +02:00
parent 3a3295d911
commit 69302be280

View File

@@ -12,7 +12,6 @@ import (
_ "github.com/lucas-clemente/quic-clients" // download clients
"github.com/lucas-clemente/quic-go/integrationtests/proxy"
"github.com/lucas-clemente/quic-go/protocol"
"github.com/lucas-clemente/quic-go/utils"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@@ -27,7 +26,6 @@ var _ = Describe("Drop Proxy", func() {
var dropproxy *proxy.UDPProxy
runDropTest := func(incomingPacketDropper, outgoingPacketDropper proxy.DropCallback, version protocol.VersionNumber) {
utils.SetLogLevel(utils.LogLevelInfo)
proxyPort := 12345
clientPath := fmt.Sprintf(
@@ -59,7 +57,6 @@ var _ = Describe("Drop Proxy", func() {
AfterEach(func() {
dropproxy.Stop()
time.Sleep(time.Millisecond)
utils.SetLogLevel(utils.LogLevelNothing)
})
for i := range protocol.SupportedVersions {