Skip to content

Commit

Permalink
fix test #588
Browse files Browse the repository at this point in the history
  • Loading branch information
syjer committed Jun 12, 2019
1 parent d9e8531 commit be09d6e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,10 @@ public void reservationFlowTest() throws Exception {
var additionalItem = items.getAdditionalServices().get(0);
assertEquals("40.00", additionalItem.getFormattedFinalPrice());
assertEquals(new BigDecimal("1.00"), additionalItem.getVatPercentage());
assertEquals(1, additionalItem.getTitle().size()); //TODO: check: if there are missing lang, we should at least copy them (?)
assertEquals(1, additionalItem.getDescription().size());
assertEquals("additional title", additionalItem.getTitle().get("en"));
assertEquals("<p>additional desc</p>", additionalItem.getDescription().get("en"));
assertEquals("<p>additional desc</p>\n", additionalItem.getDescription().get("en"));
}

// hidden category check
Expand Down

0 comments on commit be09d6e

Please sign in to comment.