Author: tilman
Date: Mon Sep 7 08:56:19 2026
New Revision: 1937959
Log:
PDFBOX-5660: fix typo, by TianHengZhuang; closes #524
Modified:
pdfbox/branches/2.0/xmpbox/src/test/java/org/apache/xmpbox/xml/DomXmpParserTest.java
Modified:
pdfbox/branches/2.0/xmpbox/src/test/java/org/apache/xmpbox/xml/DomXmpParserTest.java
==============================================================================
---
pdfbox/branches/2.0/xmpbox/src/test/java/org/apache/xmpbox/xml/DomXmpParserTest.java
Mon Sep 7 08:55:44 2026 (r1937958)
+++
pdfbox/branches/2.0/xmpbox/src/test/java/org/apache/xmpbox/xml/DomXmpParserTest.java
Mon Sep 7 08:56:19 2026 (r1937959)
@@ -1584,7 +1584,7 @@ public class DomXmpParserTest
XMPMetadata xmp2 = xmpParser2.parse(s.getBytes("utf-8"));
PhotoshopSchema photoshopSchema = xmp2.getPhotoshopSchema();
assertNull(photoshopSchema.getHeadline());
- // non existant properties are treated as text, one might want to
change this in the future.
+ // non existent properties are treated as text, one might want to
change this in the future.
assertEquals("[headline=TextType:]",
photoshopSchema.getProperty("headline").toString());
}