Skip to content

Commit

Permalink
fix(test): correct expected response code
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Oct 25, 2024
1 parent b81ac26 commit c63a517
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fulfillment-srv-dhl.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ describe('Testing Fulfillment Service Cluster:', () => {
this.timeout(60000);
const response = await fulfillment_client.submit(sample);
should.equal(
response?.operationStatus?.code, 208,
'response.operationStatus.code expected to be 208',
response?.operationStatus?.code, 207,
'response.operationStatus.code expected to be 207',
);
should.ok(
response?.items?.length ?? 0 > 0,
Expand Down

0 comments on commit c63a517

Please sign in to comment.