Skip to content

Commit

Permalink
LPS-104244 Remove unnecessary variable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
austinchiang authored and brianchandotcom committed Dec 9, 2019
1 parent 7694a31 commit 3c04fc3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 39 deletions.
Expand Up @@ -57,9 +57,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

BlogsNavigator.openBlogsAdmin(siteURLKey = "site-name");

Expand Down Expand Up @@ -111,9 +109,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

SitePages.openPagesAdmin(siteURLKey = "site-name");

Expand Down Expand Up @@ -154,9 +150,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

WebContentNavigator.openWebContentAdmin(siteURLKey = "site-name");

Expand Down
Expand Up @@ -57,9 +57,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name,Private Site Name,Restricted Site Name");
Depot.connectSite(siteList = "Site Name,Private Site Name,Restricted Site Name");

DepotNavigator.openDepotAdmin();

Expand Down Expand Up @@ -87,9 +85,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

DepotNavigator.openDepotAdmin();

Expand Down Expand Up @@ -153,9 +149,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

ProductMenu.gotoSite(site = "Site Name");

Expand Down Expand Up @@ -210,9 +204,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

Navigator.gotoSitePage(
pageName = "Page Name",
Expand Down Expand Up @@ -313,9 +305,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

Navigator.gotoSitePage(
pageName = "Page Name",
Expand Down Expand Up @@ -386,9 +376,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

Navigator.gotoSitePage(
pageName = "Page Name",
Expand Down Expand Up @@ -448,9 +436,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

Navigator.gotoSitePage(
pageName = "Page Name",
Expand Down Expand Up @@ -484,9 +470,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

DepotNavigator.openDepotAdmin();

Expand Down Expand Up @@ -525,9 +509,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Site Name");
Depot.connectSite(siteList = "Site Name");

ProductMenu.gotoSite(site = "Site Name");

Expand Down Expand Up @@ -572,9 +554,7 @@ definition {

DepotNavigator.gotoSites(depotName = "Test Depot Name");

Depot.connectSite(
connectSite = "true",
siteList = "Child Site Name");
Depot.connectSite(siteList = "Child Site Name");

ProductMenu.gotoSite(site = "Child Site Name");

Expand Down

0 comments on commit 3c04fc3

Please sign in to comment.