diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-20 23:46:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-20 23:46:11 +0200 |
commit | 0b8abbf1924a5c2262df50cc95c8e9200890f6f6 (patch) | |
tree | e33a295b81991423856d8bc704b681c79a5e7bcc /unoxml/qa/complex | |
parent | 3f317dbe71dcda974c0f322f0f4921e9e5e987f2 (diff) |
The original bytes were probably meant as UTF-8, not UTF-16
...not that it matters much /what/ characters are used in the sample text, of
course. And no-argument java.lang.String.getBytes() appears to indeed use the
legacy Mac OS Roman encoding on Mac OS X...
Change-Id: I51cd8c16f14e2df8b75d9961150518c8a03d53ca
Diffstat (limited to 'unoxml/qa/complex')
-rw-r--r-- | unoxml/qa/complex/unoxml/DOMTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/qa/complex/unoxml/DOMTest.java b/unoxml/qa/complex/unoxml/DOMTest.java index 8cd93da72d43..ed4374c5816a 100644 --- a/unoxml/qa/complex/unoxml/DOMTest.java +++ b/unoxml/qa/complex/unoxml/DOMTest.java @@ -2706,7 +2706,7 @@ public class DOMTest "<xlink:test/>" + "<office:automatic-styles teststyle=\"test\"/>" + "<moretest/>" + - "some text \uC3B6\uC3A4\uC3BC" + + "some text \u00F6\u00E4\u00FC" + "</office:document-content>"; XDocumentBuilder xBuilder = |