Skip to content

Commit

Permalink
Adjust tests for rename to heritage
Browse files Browse the repository at this point in the history
  • Loading branch information
tjwatson committed Aug 26, 2024
1 parent 7f37c1d commit 5649429
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@
@RunWith(Suite.class)
@SuiteClasses({
ManifestClassPathEarTests.class,
LegacyManifestClassPathEarTests.class,
HeritageManifestClassPathEarTests.class,
LibraryEarTests.class
})
public class FATSuite {
static final String CLASSPATH_TEST_SERVER = "classpathTest";
static final String CLASSPATH_TEST_LEGACY_SERVER = "classpathTestLegacy";
static final String CLASSPATH_TEST_HERITAGE_SERVER = "classpathTestHeritage";
static final String PRIVATE_LIBRARY_TEST_SERVER = "privateLibraryTest";

// ##### ARCHIVE NAMES #####
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*******************************************************************************/
package io.openliberty.classloading.classpath.fat;

import static io.openliberty.classloading.classpath.fat.FATSuite.CLASSPATH_TEST_LEGACY_SERVER;
import static io.openliberty.classloading.classpath.fat.FATSuite.CLASSPATH_TEST_HERITAGE_SERVER;
import static io.openliberty.classloading.classpath.fat.FATSuite.TEST_CLASS_PATH1_APP;
import static io.openliberty.classloading.classpath.fat.FATSuite.TEST_CLASS_PATH2_APP;
import static io.openliberty.classloading.classpath.fat.FATSuite.TEST_CLASS_PATH3_APP;
Expand All @@ -36,9 +36,9 @@
*
*/
@RunWith(FATRunner.class)
public class LegacyManifestClassPathEarTests extends FATServletClient {
public class HeritageManifestClassPathEarTests extends FATServletClient {

@Server(CLASSPATH_TEST_LEGACY_SERVER)
@Server(CLASSPATH_TEST_HERITAGE_SERVER)
@TestServlets({
@TestServlet(servlet = LegacyClassPathServletTest1.class, contextRoot = TEST_CLASS_PATH1_APP),
@TestServlet(servlet = LegacyClassPathServletTest2.class, contextRoot = TEST_CLASS_PATH2_APP),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<feature>componenttest-1.0</feature>
</featureManager>

<classloading useLegacyClassPath="true" />
<classloading useHeritageClassPath="true" />
<include location="../fatTestPorts.xml"/>
</server>

0 comments on commit 5649429

Please sign in to comment.