Do not fail TestGetNetworkInformation if no networks are defined

This commit is contained in:
Kienan Stewart 2022-08-23 21:50:34 -04:00
parent 0b9457e2a7
commit 2d68f5d5f7
1 changed files with 0 additions and 3 deletions

View File

@ -68,7 +68,4 @@ func TestGetNetworkInformation(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("Got error requesting network list %s", err) t.Errorf("Got error requesting network list %s", err)
} }
if len(n) == 0 {
t.Errorf("No networks defined")
}
} }