Skip to content

Commit

Permalink
updates property name
Browse files Browse the repository at this point in the history
  • Loading branch information
tjuerge committed Jul 10, 2024
1 parent a0fc2e6 commit 529a435
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/realms/acme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ components:
confluenceContent.pageNesting: ["4"]
confluenceContent.spaceKey: ["TEST"]
confluenceContent.pageLabels: ["label1, label2, label3"]
confluenceContent.pagePropertyName: ["Team"]
confluenceContent.pagePropertyName: ["Members"]
confluenceContent.memberColumnIndex: ["1"]
confluenceGroups.dropNonExistingGroups: ["true"]
confluenceGroups.groupsPath: ["/"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static void setup() throws Exception {
when(model.get(PAGE_NESTING, DEFAULT_PAGE_NESTING)).thenReturn(4);
when(model.get(SPACE_KEY)).thenReturn("TEST");
when(model.get(PAGE_LABELS)).thenReturn("label1 , label2 , lbl-test");
when(model.get(PAGE_PROPERTY_NAME)).thenReturn("Team");
when(model.get(PAGE_PROPERTY_NAME)).thenReturn("Members");
when(model.get(MEMBER_COLUMN_INDEX, DEFAULT_MEMBER_COLUMN_INDEX)).thenReturn(1);
provider = new ConfluenceContentProvider(session, model);
}
Expand Down

0 comments on commit 529a435

Please sign in to comment.