Pass pointer to node in NodCondition

This commit is contained in:
Wojciech Tyczynski
2016-07-07 13:06:32 +02:00
parent 58c95c136f
commit 7219802ac7
6 changed files with 8 additions and 8 deletions

View File

@@ -319,7 +319,7 @@ func TestGetNodeConditionPredicate(t *testing.T) {
}
pred := getNodeConditionPredicate()
for _, test := range tests {
accept := pred(test.node)
accept := pred(&test.node)
if accept != test.expectAccept {
t.Errorf("Test failed for %s, expected %v, saw %v", test.name, test.expectAccept, accept)
}