Job Failed #3341457703 - project name has already been taken

Job #3341457703 failed for d57708a9:

=== RUN   TestAccGitlabProject_InstanceBranchProtectionDisabled
    resource_gitlab_project_test.go:828: Step 5/16 error: Error running apply: exit status 1
        
        Error: POST http://docker:8080/api/v4/projects: 400 {message: {name: [has already been taken]}, {path: [has already been taken]}}
        
          with gitlab_project.foo,
          on terraform_plugin_test.tf line 2, in resource "gitlab_project" "foo":
           2: 					resource "gitlab_project" "foo" {
        

Such a strange error again.

The thing here is that this test destroys the project in a prior test step, but then a subsequent test fails because the name is claimed to be taken already.

However, we wait in the delete of the resource until the project is removed (as returned by the API).

Maybe some other case of async work at play here ...