Skip to content

Commit

Permalink
Use unicode points for Cyrillic contents
Browse files Browse the repository at this point in the history
Jenkins was failing the test containing Cyrillic characters
  • Loading branch information
Samuel Huylebroeck committed Aug 11, 2017
1 parent 98224e5 commit 78c6b2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void barcode01Test() throws IOException, DocumentException, InterruptedEx
@Test
public void barcode02Test() throws IOException, DocumentException, InterruptedException {
String filename = "barcodeDataMatrix02.pdf";
String code = "дима";
String code = "\u0434\u0438\u043C\u0430";// дима
String encoding = "UTF-8";

Document document = new Document(PageSize.A4);
Expand Down

0 comments on commit 78c6b2a

Please sign in to comment.