fix: mark TestGatherUDPCert as an integration test (#10279)

This commit is contained in:
Sebastian Spaink 2021-12-15 18:48:18 -06:00 committed by GitHub
parent 082c7a552b
commit 68233c5934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -259,6 +259,9 @@ func TestGatherChain(t *testing.T) {
}
func TestGatherUDPCert(t *testing.T) {
if testing.Short() {
t.Skip("Skipping integration test in short mode")
}
pair, err := tls.X509KeyPair([]byte(pki.ReadServerCert()), []byte(pki.ReadServerKey()))
require.NoError(t, err)