Skip to content

Commit

Permalink
Merge pull request #514 from drewnoakes/bump-xmp-core
Browse files Browse the repository at this point in the history
Bump com.adobe.xmpcore to 6.1.11
  • Loading branch information
drewnoakes authored Nov 20, 2020
2 parents 0fafa2f + ba22db9 commit 52d5674
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Tests/com/drew/metadata/xmp/XmpReaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ public void testExtract_HasXMPMeta() throws Exception
@Test
public void testExtract_PropertyCount() throws Exception
{
assertEquals(168, _directory.getInt(XmpDirectory.TAG_XMP_VALUE_COUNT));
assertEquals(167, _directory.getInt(XmpDirectory.TAG_XMP_VALUE_COUNT));
}

@Test
public void testGetXmpProperties() throws Exception
{
Map<String,String> propertyMap = _directory.getXmpProperties();

assertEquals(168, propertyMap.size());
assertEquals(167, propertyMap.size());

assertTrue(propertyMap.containsKey("photoshop:Country"));
assertEquals("Deutschland", propertyMap.get("photoshop:Country"));
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<dependency>
<groupId>com.adobe.xmp</groupId>
<artifactId>xmpcore</artifactId>
<version>6.0.6</version>
<version>6.1.11</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 52d5674

Please sign in to comment.