mirror of https://github.com/tailscale/tailscale/
net/nettest: de-flake tests on Windows
Windows has a low resolution timer. Some of the tests assumed that unblock takes effect immediately. Consider: t := time.Now() elapsed := time.Now().After(t) It seems plausible that elapsed should always be true. However, with a low resolution timer, that might fail. Change time.Now().After to !time.Now().Before, so that unblocking always takes effect immediately. Fixes #873.alexbrainman/use_wg_dns_code
parent
a64d06f15c
commit
7c1a9e8616
Loading…
Reference in New Issue