Skip to content

Commit

Permalink
Fix bucket test
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Petkovski <[email protected]>
  • Loading branch information
fpetkovski committed Jul 29, 2023
1 parent 26cbd33 commit 2f659ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/store/bucket_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -796,8 +796,8 @@ func TestBucketStore_LabelNamesSet_e2e(t *testing.T) {
}

filter := s.store.LabelNamesSet()
for _, n := range []string{"a", "b", "c", "ext1", "ext2"} {
testutil.Assert(t, filter.Has(n))
for _, n := range []string{"a", "b", "c"} {
testutil.Assert(t, filter.Has(n), "expected filter to have %s", n)
}
})
}
Expand Down

0 comments on commit 2f659ad

Please sign in to comment.