Skip to content

Commit

Permalink
SLING-7834 - previous changes broke LdapFilterTeleporterTest
Browse files Browse the repository at this point in the history
  • Loading branch information
bdelacretaz committed Aug 17, 2018
1 parent e0398af commit 6f7e182
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public void customize(TeleporterRule t, String options) {
cst.includeDependencyPrefix("org.apache.sling.launchpad.webapp");

// Get the testservices classes from that bundle, importing them
final String eventsPackage = org.apache.sling.launchpad.testservices.events.EventsCounter.class.getPackage().getName();
cst.includeDependencyPrefix("org.apache.sling.launchpad.testservices");
cst.excludeDependencyPrefix(eventsPackage);
cst.excludeDependencyPrefix(org.apache.sling.launchpad.testservices.events.EventsCounter.class.getPackage().getName());
cst.excludeDependencyPrefix(org.apache.sling.launchpad.testservices.exported.StringTransformer.class.getName());

cst.setServerCredentials("admin", "admin");
}
Expand Down

0 comments on commit 6f7e182

Please sign in to comment.