Skip to content

Commit

Permalink
Fix ResourceManagerImplTest
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-podolskiy90 committed Jan 26, 2023
1 parent 1dd8682 commit d3f9945
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ public void testCreateFromZippedFile() throws Exception {
assertNull(res.getNextPublished());
// the other last modified dates were also reset
assertNotNull(res.getMetadataModified());
assertNull(res.getMappingsModified());
assertNull(res.getSourcesModified());
assertNotNull(res.getMappingsModified());
assertNotNull(res.getSourcesModified());

// eml properties loaded from eml.xml
assertEquals("TEST RESOURCE", res.getEml().getTitle());
Expand Down Expand Up @@ -592,8 +592,8 @@ public void testCreateWithExtensionFromZippedFile() throws Exception {
assertNull(res.getNextPublished());
// the other last modified dates were also reset
assertNotNull(res.getMetadataModified());
assertNull(res.getMappingsModified());
assertNull(res.getSourcesModified());
assertNotNull(res.getMappingsModified());
assertNotNull(res.getSourcesModified());
}

/**
Expand Down

0 comments on commit d3f9945

Please sign in to comment.