windnsapi: Fix incorrect error checking

This commit is contained in:
世界 2024-08-19 17:37:13 +08:00
parent 96bef0733f
commit afd8993773
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 21 additions and 5 deletions

View file

@ -0,0 +1,16 @@
package windnsapi
import (
"runtime"
"testing"
"github.com/stretchr/testify/require"
)
func TestDNSAPI(t *testing.T) {
if runtime.GOOS != "windows" {
t.SkipNow()
}
t.Parallel()
require.NoError(t, FlushResolverCache())
}