We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f27304 commit 1f8e5a5Copy full SHA for 1f8e5a5
test/internal/helper.go
@@ -160,7 +160,7 @@ func deleteProjectWithRetry(t *testing.T, projectID string) {
160
backoff := 1
161
for attempts := 1; attempts <= maxRetryAttempts; attempts++ {
162
e := deleteProject(projectID)
163
- if e == nil || strings.Contains(e.Error(), "GROUP_NOT_FOUND") || strings.Contains(e.Error(), "404") {
+ if e == nil || strings.Contains(e.Error(), "GROUP_NOT_FOUND") {
164
t.Logf("project %q successfully deleted", projectID)
165
deleted = true
166
break
0 commit comments