Skip to content

Commit

Permalink
LPS-199837 Add missing parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Yang Cao authored and brianchandotcom committed Oct 24, 2023
1 parent 2ebe421 commit 02a1313
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,13 +299,15 @@ definition {
task ("Add a child widget page") {
JSONLayout.addPublicLayout(
groupName = ${randomSiteName},
layoutName = "Test Child Page Name");
layoutName = "Test Child Page Name",
parentLayoutName = "Test Parent Page Name");
}

task ("Add a grandchild widget page") {
JSONLayout.addPublicLayout(
groupName = ${randomSiteName},
layoutName = "Test Grand Child Page Name");
layoutName = "Test Grand Child Page Name",
parentLayoutName = "Test Child Page Name");
}

task ("Add a Banner Center fragment to page") {
Expand Down

0 comments on commit 02a1313

Please sign in to comment.