Skip to content

Commit

Permalink
Update shared-lib name
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Wisniewski <[email protected]>
  • Loading branch information
Adam Wisniewski authored and Adam Wisniewski committed Oct 14, 2023
1 parent 951c7fc commit 129f847
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<groupId>test</groupId>
<artifactId>shared-lib</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class LibertyPluginSWTBotGradleTest extends AbstractLibertyPluginSWTBotTe
/**
* Shared lib jar project name.
*/
static final String MVN_SHARED_LIB_NAME = "test-shared-lib-jar";
static final String MVN_SHARED_LIB_NAME = "shared-lib";

static String testAppPath;
static String testWrapperAppPath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class LibertyPluginSWTBotMavenTest extends AbstractLibertyPluginSWTBotTes
/**
* Shared lib jar project name.
*/
static final String MVN_SHARED_LIB_NAME = "test-shared-lib-jar";
static final String MVN_SHARED_LIB_NAME = "shared-lib";

/**
* Test app relative path.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ public static void checkRunInContainerCheckBox(Shell shell, String runDebugConfi
Object appConfigEntry = find(runDebugConfigName, libertyConfigTree,
Option.factory().useContains(true).widgetClass(TreeItem.class).build());
go(appConfigEntry);
Object parmLabel = find("Run in container", appConfigEntry, Option.factory().widgetClass(Label.class).build());
Object parmLabel = find("Run in Container", appConfigEntry, Option.factory().widgetClass(Label.class).build());

Control checkBox = ControlFinder.findControlInRange(parmLabel, SWTBotCheckBox.class, Direction.WEST);
go(checkBox);
Expand Down

0 comments on commit 129f847

Please sign in to comment.