mirror of
https://github.com/juanfont/headscale.git
synced 2024-12-03 04:03:05 +00:00
Fix lint
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
parent
53b4bb220d
commit
40c048fb45
1 changed files with 2 additions and 2 deletions
|
@ -94,8 +94,8 @@ func TestPingAllByHostname(t *testing.T) {
|
||||||
t.Errorf("failed to create headscale environment: %s", err)
|
t.Errorf("failed to create headscale environment: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
var allClients []TailscaleClient
|
allClients := make([]TailscaleClient, 0)
|
||||||
var allHostnames []string
|
allHostnames := make([]string, 0)
|
||||||
|
|
||||||
for namespace := range spec {
|
for namespace := range spec {
|
||||||
clients, err := scenario.GetClients(namespace)
|
clients, err := scenario.GetClients(namespace)
|
||||||
|
|
Loading…
Reference in a new issue