Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Sep 12, 2024
1 parent 035df24 commit 90d24c5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions v2/operator_claims_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -457,12 +457,9 @@ func TestTags(t *testing.T) {
if len(oc2.GenericFields.Tags) != 3 {
t.Fatal("expected 3 tags")
}
for _, v := range oc.GenericFields.Tags {
AssertFalse(v == "TWO", t)
}

AssertTrue(oc.GenericFields.Tags.Contains("one"), t)
AssertTrue(oc.GenericFields.Tags.Contains("two"), t)
AssertTrue(oc.GenericFields.Tags.Contains("TWO"), t)
AssertTrue(oc.GenericFields.Tags.Contains("three"), t)
}

Expand Down

0 comments on commit 90d24c5

Please sign in to comment.