Since:        1138,
			}
		})

		JustBeforeEach(func() {
			request = newTestRequest(requestBody)
			handler.RetireActualLRP(responseRecorder, request)
		})

		Context("when retireing the actual lrp in the DB succeeds", func() {
			BeforeEach(func() {
				fakeActualLRPDB.RetireActualLRPReturns(nil)
			})

			It("retires the actual lrp by process guid and index", func() {
				Expect(fakeActualLRPDB.RetireActualLRPCallCount()).To(Equal(1))
				_, actualKey := fakeActualLRPDB.RetireActualLRPArgsForCall(0)
				Expect(*actualKey).To(Equal(key))

				Expect(responseRecorder.Code).To(Equal(http.StatusOK))

				response := &models.ActualLRPLifecycleResponse{}
				err := response.Unmarshal(responseRecorder.Body.Bytes())
				Expect(err).NotTo(HaveOccurred())

				Expect(response.Error).To(BeNil())
			})
		})

		Context("when retiring the actual lrp fails", func() {
			BeforeEach(func() {