Skip to content

Commit

Permalink
test(bigtable): delete table retry fix (#3443)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisskaPie committed Feb 5, 2021
1 parent 7a56edf commit 670c1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigtable/integration_test.go
Expand Up @@ -2378,9 +2378,9 @@ func deleteTable(ctx context.Context, t *testing.T, ac *AdminClient, name string
err := internal.Retry(ctx, bo, func() (bool, error) {
err := ac.DeleteTable(ctx, name)
if err != nil {
return true, err
return false, err
}
return false, nil
return true, nil
})
if err != nil {
t.Logf("DeleteTable: %v", err)
Expand Down

0 comments on commit 670c1a5

Please sign in to comment.