From fdb98ff4d9a401fe75fc189044269e6a7902dc5e Mon Sep 17 00:00:00 2001 From: harshithad0703 Date: Mon, 29 Apr 2024 15:24:21 +0530 Subject: [PATCH] test: changes done in branches deletion error message --- test/sanity-check/api/branch-test.js | 2 +- test/sanity-check/api/delete-test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sanity-check/api/branch-test.js b/test/sanity-check/api/branch-test.js index ce2ab8ea..57491802 100644 --- a/test/sanity-check/api/branch-test.js +++ b/test/sanity-check/api/branch-test.js @@ -203,7 +203,7 @@ describe('Branch api Test', () => { makeBranch(devBranch.uid) .delete() .then((response) => { - expect(response.notice).to.be.equal('Your request to delete branch is in progress. Please check organization bulk task queue for more details.') + expect(response.notice).to.be.equal('Your branch deletion is in progress. Please refresh in a while.') done() }) .catch(done) diff --git a/test/sanity-check/api/delete-test.js b/test/sanity-check/api/delete-test.js index 3a3c2292..e0210bfa 100644 --- a/test/sanity-check/api/delete-test.js +++ b/test/sanity-check/api/delete-test.js @@ -116,7 +116,7 @@ describe('Branch Alias delete api Test', () => { client.stack({ api_key: process.env.API_KEY }).branch(stageBranch.uid) .delete() .then((response) => { - expect(response.notice).to.be.equal('Your request to delete branch is in progress. Please check organization bulk task queue for more details.') + expect(response.notice).to.be.equal('Your branch deletion is in progress. Please refresh in a while.') done() }) .catch(done)