From 705282aeebe71d126bd9c336c9c4234948425219 Mon Sep 17 00:00:00 2001 From: Tim Downey Date: Thu, 1 Jun 2017 15:35:42 -0700 Subject: [PATCH] Revert "Revert "Fix ordering problem in afterEach"" This reverts commit a23d75cf865e283fcce948f26cb94e4811562f6b. Signed-off-by: Matt Royal --- services/recursive_delete.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/recursive_delete.go b/services/recursive_delete.go index 73c4bca21..935276ede 100644 --- a/services/recursive_delete.go +++ b/services/recursive_delete.go @@ -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)) } }) })