Skip to content

Commit

Permalink
Reduce test work and output for truncation and timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
zalegrala committed Jul 25, 2024
1 parent 8a8a1a7 commit c31ae8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions integration/poller/poller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func TestPollerOwnership(t *testing.T) {
// Use the block boundaries in the GCS and S3 implementation
bb := blockboundary.CreateBlockBoundaries(listBlockConcurrency)

tenantCount := 1000
tenantCount := 250
tenantExpected := map[string][]uuid.UUID{}

// Push some data to a few tenants
Expand All @@ -180,8 +180,8 @@ func TestPollerOwnership(t *testing.T) {
l := blocklist.New()
mm, cm, err := blocklistPoller.Do(l)
require.NoError(t, err)
t.Logf("mm: %v", mm)
t.Logf("cm: %v", cm)
// t.Logf("mm: %v", mm)
// t.Logf("cm: %v", cm)

l.ApplyPollResults(mm, cm)

Expand All @@ -197,7 +197,7 @@ func TestPollerOwnership(t *testing.T) {

assert.Equal(t, expected, actual)
assert.Equal(t, len(expected), len(metas))
t.Logf("actual: %v", actual)
// t.Logf("actual: %v", actual)

for _, e := range expected {
assert.True(t, found(e, metas))
Expand Down Expand Up @@ -361,7 +361,7 @@ func TestTenantDeletion(t *testing.T) {
require.NoError(t, err)

tennants, err = r.Tenants(ctx)
t.Logf("tennants: %v", tennants)
// t.Logf("tennants: %v", tennants)
require.NoError(t, err)
require.Equal(t, 0, len(tennants))
})
Expand Down

0 comments on commit c31ae8c

Please sign in to comment.