Skip to content

Commit

Permalink
remove unnecessary lines
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoaresd committed Dec 11, 2024
1 parent 73dcd46 commit e27d960
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion test/e2e/parallel/spacebindingrequest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ func TestCreateSpaceBindingRequest(t *testing.T) {
})

t.Run("error", func(t *testing.T) {

t.Run("unable create space binding request with invalid SpaceRole", func(t *testing.T) {
user1 := NewSignupRequest(awaitilities).
ManuallyApprove().
Expand Down
1 change: 0 additions & 1 deletion test/e2e/parallel/vm_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ func TestCreateVirtualMachine(t *testing.T) {
},
} {
t.Run(tcname, func(t *testing.T) {

// create a user for each scenario to avoid vm quota limit
username := fmt.Sprintf("test-vm-%d", userCounter)
useremail := fmt.Sprintf("%[email protected]", username)
Expand Down
1 change: 0 additions & 1 deletion testsupport/user_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ func createMultipleSignups(t *testing.T, awaitilities wait.Awaitilities, targetC

user := signupRequest.Execute(t)
signups[i] = user.UserSignup

}
return signups
}
Expand Down
1 change: 0 additions & 1 deletion testsupport/wait/awaitility.go
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,6 @@ func (a *Awaitility) WaitForDeploymentToGetReady(t *testing.T, name string, repl
t.Logf("waiting until deployment '%s' in namespace '%s' is ready", name, a.Namespace)
deployment := &appsv1.Deployment{}
err := wait.PollUntilContextTimeout(context.TODO(), a.RetryInterval, 6*a.Timeout, true, func(ctx context.Context) (done bool, err error) {

obj := &appsv1.Deployment{}
if err := a.Client.Get(context.TODO(), types.NamespacedName{Namespace: a.Namespace, Name: name}, obj); err != nil {
if apierrors.IsNotFound(err) {
Expand Down

0 comments on commit e27d960

Please sign in to comment.