fix: mark TestGatherUDPCert as an integration test (#10279)
This commit is contained in:
parent
082c7a552b
commit
68233c5934
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue