mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
windnsapi: Fix incorrect error checking
This commit is contained in:
parent
96bef0733f
commit
afd8993773
4 changed files with 21 additions and 5 deletions
16
common/windnsapi/dnsapi_test.go
Normal file
16
common/windnsapi/dnsapi_test.go
Normal 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())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue