From 41ca178dcc1e100eb2c672c601163400e01cb516 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Wed, 2 Jan 2019 10:04:38 +0700 Subject: [PATCH] don't run the handshake drop integration tests twice --- integrationtests/self/handshake_drop_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integrationtests/self/handshake_drop_test.go b/integrationtests/self/handshake_drop_test.go index 6df4a8726..d477c00dd 100644 --- a/integrationtests/self/handshake_drop_test.go +++ b/integrationtests/self/handshake_drop_test.go @@ -7,8 +7,8 @@ import ( "net" "time" - "github.com/lucas-clemente/quic-go" - "github.com/lucas-clemente/quic-go/integrationtests/tools/proxy" + quic "github.com/lucas-clemente/quic-go" + quicproxy "github.com/lucas-clemente/quic-go/integrationtests/tools/proxy" "github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/testdata" @@ -150,7 +150,7 @@ var _ = Describe("Handshake drop tests", func() { Expect(proxy.Close()).To(Succeed()) }) - for _, v := range append(protocol.SupportedVersions, protocol.VersionTLS) { + for _, v := range protocol.SupportedVersions { version := v Context(fmt.Sprintf("with QUIC version %s", version), func() {