Skip to content

Commit

Permalink
fix: Update code
Browse files Browse the repository at this point in the history
  • Loading branch information
larshelge committed Jan 8, 2025
1 parent 34adbec commit a2032c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ void setup() {
.thenReturn(List.of(dataElement));

OrganisationUnit organisationUnit = createOrganisationUnit('O');
organisationUnit.getPath();
BaseDimensionalObject baseDimensionalObject = new BaseDimensionalObject();
baseDimensionalObject.setItems(List.of(organisationUnit));
lenient()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public void setUp() {

ouA = createOrganisationUnit('A');
ouB = createOrganisationUnit('B');
ouA.getPath();
ouB.getPath();
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ public static OrganisationUnit createOrganisationUnit(char uniqueCharacter) {
unit.setCode("OrganisationUnitCode" + uniqueCharacter);
unit.setOpeningDate(date);
unit.setComment("Comment" + uniqueCharacter);
// unit.getSharing().setPublicAccess("--------");
// unit.getSharing().setPublicAccess("--------");

return unit;
}
Expand Down

0 comments on commit a2032c3

Please sign in to comment.