Skip to content

Commit

Permalink
[DE-676] Fix proforma subscription group test
Browse files Browse the repository at this point in the history
  • Loading branch information
maciej-nedza committed Mar 1, 2024
1 parent cf39e97 commit 83114e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ void shouldListGroupProformas() throws IOException, ApiException {
assertThat(proformaInvoice.getCustomerId()).isEqualTo(groupSignup.getCustomerId());

assertThat(proformaInvoice.getDeliveryDate()).isEqualTo(LocalDate.now().plusMonths(1));
assertThat(proformaInvoice.getMemo()).isEmpty();
assertThat(proformaInvoice.getMemo()).isEqualTo("Thanks for your business! If you have any questions, please contact your account manager.");
assertThat(proformaInvoice.getNumber()).isNotNull();
assertThat(proformaInvoice.getPaymentInstructions()).isEmpty();
assertThat(proformaInvoice.getPaymentInstructions()).isEqualTo("Please make checks payable to \"Acme, Inc.\"");
assertThat(proformaInvoice.getProductFamilyName()).isEqualTo(productFamily.getName());
assertThat(proformaInvoice.getProductName()).isEqualTo(product.getName());
assertThat(proformaInvoice.getPublicUrl()).isNotNull().isNotBlank();
Expand Down

0 comments on commit 83114e8

Please sign in to comment.