Don't show non-internet pseudo nodes. (#1326)

This commit is contained in:
Tom Wilkie
2016-04-18 14:18:19 +01:00
parent 528bfa98ee
commit 0396a79d7f
5 changed files with 22 additions and 20 deletions

View File

@@ -147,7 +147,7 @@ func TestAPITopologyWebsocket(t *testing.T) {
if err := decoder.Decode(&d); err != nil {
t.Fatalf("JSON parse error: %s", err)
}
equals(t, 8, len(d.Add))
equals(t, 6, len(d.Add))
equals(t, 0, len(d.Update))
equals(t, 0, len(d.Remove))
}