Skip to content

Commit

Permalink
Formatter: enable to select multiple identifiers and save records as …
Browse files Browse the repository at this point in the history
…MARCXML #558
  • Loading branch information
pkiraly committed Dec 18, 2024
1 parent 5ba7550 commit d7044a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void test() {
assertEquals("the summary file name (provides a summary of issues, such as the number of instance and number of records having the particular issue)", firstItem.get("description"));

assertTrue(parameters.containsKey("index"));
assertEquals(8, ((List) parameters.get("index")).size());
assertEquals(9, ((List) parameters.get("index")).size());
firstItem = (Map) ((List) parameters.get("index")).get(0);
assertEquals(4, firstItem.size());
assertEquals("S", firstItem.get("short"));
Expand Down Expand Up @@ -125,7 +125,7 @@ public void test() {
assertEquals("the report file name (default is serial-score.csv)", firstItem.get("description"));

assertTrue(parameters.containsKey("formatter"));
assertEquals(7, ((List) parameters.get("formatter")).size());
assertEquals(8, ((List) parameters.get("formatter")).size());
firstItem = (Map) ((List) parameters.get("formatter")).get(0);
assertEquals(4, firstItem.size());
assertEquals("l", firstItem.get("short"));
Expand Down

0 comments on commit d7044a2

Please sign in to comment.