Skip to content

Commit 1f8e5a5

Browse files
Update helper.go
1 parent 3f27304 commit 1f8e5a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/internal/helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func deleteProjectWithRetry(t *testing.T, projectID string) {
160160
backoff := 1
161161
for attempts := 1; attempts <= maxRetryAttempts; attempts++ {
162162
e := deleteProject(projectID)
163-
if e == nil || strings.Contains(e.Error(), "GROUP_NOT_FOUND") || strings.Contains(e.Error(), "404") {
163+
if e == nil || strings.Contains(e.Error(), "GROUP_NOT_FOUND") {
164164
t.Logf("project %q successfully deleted", projectID)
165165
deleted = true
166166
break

0 commit comments

Comments
 (0)