Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gioelemella committed Dec 18, 2024
1 parent 8b53b17 commit f24a414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Then('the response body has the expected values', function () {
assert.strictEqual(responseToCheck.data.paymentOption[0].transfer[0].amount, body.properties.amount);
assert.strictEqual(responseToCheck.data.paymentOption[0].transfer[0].remittanceInformation, transferRemittanceInformation);
assert.strictEqual(responseToCheck.data.paymentOption[0].transfer[0].stamp.hashDocument, body.properties.documentHash);
assert.strictEqual(responseToCheck.data.paymentOption[0].transfer[0].stamp.stampType, "st");
assert.strictEqual(responseToCheck.data.paymentOption[0].transfer[0].stamp.stampType, "01");
assert.strictEqual(responseToCheck.data.paymentOption[0].transfer[0].stamp.provincialResidence, body.properties.debtorProvince);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void buildMbdPaymentOptionTestSuccess() throws Exception {
assertEquals(
request.getProperties().getDebtorProvince(), transfer.getStamp().getProvincialResidence());
assertEquals(request.getProperties().getDocumentHash(), transfer.getStamp().getHashDocument());
assertEquals("st", transfer.getStamp().getStampType());
assertEquals("01", transfer.getStamp().getStampType());
}

@Test
Expand Down

0 comments on commit f24a414

Please sign in to comment.