aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tunnel/winipcfg/winipcfg_test.go
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-05-27 09:57:02 +0200
committerSimon Rozman <simon@rozman.si>2019-05-27 09:57:02 +0200
commit65317dcd758e916b751dcae5928e3a53f6d9f701 (patch)
treedd347f7322ec60a98668283053d49b456ec8aafe /tunnel/winipcfg/winipcfg_test.go
parentbuild: set 6.1 PE flags (diff)
downloadwireguard-windows-65317dcd758e916b751dcae5928e3a53f6d9f701.tar.xz
wireguard-windows-65317dcd758e916b751dcae5928e3a53f6d9f701.zip
winipcfg: make LUID.DeleteIPAddress accept IPNet
Thou DeleteUnicastIpAddressEntry() cares about the IP only. Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'tunnel/winipcfg/winipcfg_test.go')
-rw-r--r--tunnel/winipcfg/winipcfg_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tunnel/winipcfg/winipcfg_test.go b/tunnel/winipcfg/winipcfg_test.go
index c69c1847..829d2675 100644
--- a/tunnel/winipcfg/winipcfg_test.go
+++ b/tunnel/winipcfg/winipcfg_test.go
@@ -439,7 +439,7 @@ func TestAddDeleteIPAddress(t *testing.T) {
t.Errorf("Notification handler has not been called on add.")
}
- err = ifc.LUID.DeleteIPAddress(unexistentIPAddresToAdd.IP)
+ err = ifc.LUID.DeleteIPAddress(unexistentIPAddresToAdd)
if err != nil {
t.Errorf("LUID.DeleteIPAddress() returned an error: %v", err)
}