Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
fix go check
Browse files Browse the repository at this point in the history
  • Loading branch information
aarshkshah1992 committed Sep 19, 2023
1 parent 8fc01fe commit 3fa73c2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pool_dynamics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,7 @@ func TestPoolDynamics(t *testing.T) {
for n := range controlGroup {
assert.Contains(t, ch.CabooseActiveNodes.Nodes, n)
}

})

}

func TestPoolAffinity(t *testing.T) {
Expand All @@ -226,14 +224,11 @@ func TestPoolAffinity(t *testing.T) {
_, _ = ch.Caboose.Get(ctx, cidList[0])

goodNodes := make([]*caboose.Node, 0)
badNodes := make([]*caboose.Node, 0)

for _, n := range ch.CabooseAllNodes.Nodes {
_, ok := controlGroup[n.URL]
if ok {
goodNodes = append(goodNodes, n)
} else {
badNodes = append(badNodes, n)
}
}

Expand Down

0 comments on commit 3fa73c2

Please sign in to comment.