Skip to content

Commit

Permalink
Fix organization creation test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
sadilchamishka committed Oct 19, 2023
1 parent 97fab33 commit 4c9369f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private String createBaseOrg() {
" \"name\": \"ABC Builders\",\n" +
" \"description\": \"Building constructions\",\n" +
" \"type\": \"TENANT\",\n" +
" \"parentId\": \"Super\",\n" +
" \"parentId\": \"10084a8d-113f-4211-a0d5-efe36b082211\",\n" +
" \"attributes\": [\n" +
" {\n" +
" \"key\": \"Country\",\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void createOrganization() throws Exception {

if (OrganizationLevel.SUPER_ORGANIZATION.equals(this.organizationLevel)) {
org = "Level1Org";
parentId = SUPER_ORGANIZATION_NAME;
parentId = SUPER_ORGANIZATION_ID;
} else {
org = "Level2Org";
parentId = subOrganizationId;
Expand Down

0 comments on commit 4c9369f

Please sign in to comment.