Skip to content

Commit

Permalink
feat(EDGRTAC-78): fix ModuleDescriptor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
humonest-one committed Mar 18, 2024
1 parent b65fbe2 commit 14f682d
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/test/java/org/folio/edge/rtac/model/InstancesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,11 @@ public void setUp() throws Exception {
.library(new Library().withCode("MH").withName("MH Main Library"))
.build();

Holding h3 = Holding.builder()
.id("99712686103569")
.callNumber("PS3552.E796 D44x 1975")
.location("LC General Collection Millersville University Library")
.status("Item in place")
.itemCopyNumber("102")
.holdingsCopyNumber("202")
.dueDate("2018-04-23 12:00:00")
.build();

instances = new Instances();

final var holdings = new Holdings();
holdings.setInstanceId(INSTANCE_ID);
holdings.setHoldings(List.of(h1, h2, h3));
holdings.setHoldings(List.of(h1, h2));
instances.setHoldings(List.of(holdings));

SchemaFactory schemaFactory = SchemaFactory
Expand Down

0 comments on commit 14f682d

Please sign in to comment.