Skip to content

Commit

Permalink
fix: test broken on opensource repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamacro authored and nekohasekai committed Jun 9, 2022
1 parent 220ef9e commit 186a4cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/util_other_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ package main

import (
"errors"
"net/netip"
"net"
)

func defaultRouteIP() (netip.Addr, error) {
return netip.Addr{}, errors.New("not supported")
func defaultRouteIP() (net.IP, error) {
return nil, errors.New("not supported")
}

0 comments on commit 186a4cf

Please sign in to comment.