From e228d5a854d66d91bb48544c09f8823cfcb9c90e Mon Sep 17 00:00:00 2001 From: William Wills Date: Tue, 10 Dec 2024 12:25:59 -0500 Subject: [PATCH] fix: failing test --- tests/resources/organization.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resources/organization.spec.js b/tests/resources/organization.spec.js index 308f4a52..b3be94a1 100644 --- a/tests/resources/organization.spec.js +++ b/tests/resources/organization.spec.js @@ -26,7 +26,7 @@ describe('Orgainzation Resource CRUD', function () { const response = await supertest(app).delete(`/v1/organizations`).send(); expect(response.body.message).to.equal( - 'Your home organization was reset, please create a new one.', + 'Your home organization was deleted from this instance. (note that it still exists in datalayer)', ); const stagingData = await testFixtures.getLastCreatedStagingRecord();