Skip to content

Commit

Permalink
CIV-14128: Fixed build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sjamihmcts committed Jun 25, 2024
1 parent 93bd4a5 commit 9ffd480
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/api/steps_LRspec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,7 @@ module.exports = {
await waitForFinishedBusinessProcess(caseId);
},

discontinueClaim: async (user, addApplicant2) => {
discontinueClaim: async (user) => {
console.log('discontinueClaim for case id ' + caseId);
await apiRequest.setupTokens(user);
eventName = 'DISCONTINUE_CLAIM_CLAIMANT';
Expand Down
1 change: 0 additions & 1 deletion e2e/fixtures/events/discontinueClaim2v1Spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const {date, element} = require("../../api/dataHelper");
module.exports = {
discontinueClaim: () => {
const data = {
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/api_tests/lrspec/api_2v1_spec_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Scenario('Settle claim 2v1 scenario', async ({I, api_spec}) => {

Scenario('Discontinue claim 2v1 scenario', async ({I, api_spec}) => {
await api_spec.createClaimWithRepresentedRespondent(config.applicantSolicitorUser, 'TWO_V_ONE');
await api_spec.discontinueClaim(config.applicantSolicitorUser, 'YES');
await api_spec.discontinueClaim(config.applicantSolicitorUser);

});

Expand Down

0 comments on commit 9ffd480

Please sign in to comment.