Skip to content

Commit 952a76b

Browse files
committed
fixing failing system test that was expecting quotes where they are no longer used
1 parent d1da119 commit 952a76b

File tree

1 file changed

+2
-2
lines changed
  • system-test/src/test/java/oracle/weblogic/deploy/integration

1 file changed

+2
-2
lines changed

system-test/src/test/java/oracle/weblogic/deploy/integration/ITWdt.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,12 +532,12 @@ public void testFDiscoverDomainWithRequiredArgument() throws Exception {
532532
private void verifyFDiscoverDomainWithRequiredArgument(String expectedModelFile) throws Exception {
533533
List<String> checkContents = new ArrayList<>();
534534
checkContents.add("domainInfo:");
535-
checkContents.add("AdminUserName: '--FIX ME--'");
535+
checkContents.add("AdminUserName: --FIX ME--");
536536
checkContents.add("CoherenceClusterSystemResource: defaultCoherenceCluster");
537537
checkContents.add("PublicAddress: kubernetes");
538538
checkContents.add("Trust Service Identity Asserter:");
539539
checkContents.add("appDeployments:");
540-
checkContents.add("SourcePath: 'wlsdeploy/applications/simple-app.war'");
540+
checkContents.add("SourcePath: wlsdeploy/applications/simple-app.war");
541541
verifyModelFileContents(expectedModelFile, checkContents);
542542
}
543543

0 commit comments

Comments
 (0)