Skip to content

Commit

Permalink
Merge pull request cloudfoundry#211 from matt-royal/fix-cats-ordering
Browse files Browse the repository at this point in the history
Fix ordering problem in afterEach
  • Loading branch information
jaresty authored Jun 19, 2017
2 parents c201ce9 + 705282a commit 4b6f926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/recursive_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ var _ = ServicesDescribe("Recursive Delete", func() {
Expect(cf.Cf("delete-service", instanceName, "-f").Wait(Config.DefaultTimeoutDuration())).To(Exit(0))
Expect(cf.Cf("delete-space", spaceName, "-f").Wait(Config.DefaultTimeoutDuration())).To(Exit(0))
}
Expect(cf.Cf("delete-quota", "-f", quotaName).Wait(TestSetup.ShortTimeout())).To(Exit(0))
Expect(cf.Cf("delete-org", orgName, "-f").Wait(Config.DefaultTimeoutDuration())).To(Exit(0))
Expect(cf.Cf("delete-quota", "-f", quotaName).Wait(TestSetup.ShortTimeout())).To(Exit(0))
}
})
})
Expand Down

0 comments on commit 4b6f926

Please sign in to comment.