ci: remove special casing for AppVeyor (#3753)

We dropped AppVeyor a long time ago.
This commit is contained in:
Marten Seemann 2023-04-19 15:05:23 +02:00 committed by GitHub
parent 969b5dc131
commit a0f032ee18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,6 @@ import (
"crypto/tls"
"errors"
"net"
"os"
"time"
mocklogging "github.com/quic-go/quic-go/internal/mocks/logging"
@ -102,10 +101,6 @@ var _ = Describe("Client", func() {
})
It("resolves the address", func() {
if os.Getenv("APPVEYOR") == "True" {
Skip("This test is flaky on AppVeyor.")
}
manager := NewMockPacketHandlerManager(mockCtrl)
manager.EXPECT().Add(gomock.Any(), gomock.Any())
manager.EXPECT().Destroy()
@ -391,10 +386,6 @@ var _ = Describe("Client", func() {
})
It("closes the connection when it was created by DialAddr", func() {
if os.Getenv("APPVEYOR") == "True" {
Skip("This test is flaky on AppVeyor.")
}
manager := NewMockPacketHandlerManager(mockCtrl)
mockMultiplexer.EXPECT().AddConn(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(manager, nil)
manager.EXPECT().Add(gomock.Any(), gomock.Any())