From 876b16e75ae5e36956da0d551fbf211d091e5dd5 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 1 Jan 2018 16:29:53 -0500 Subject: [PATCH] Fix typo in comment in Wildfly build This commit fixes a typographical error in the Wildfly tests build file. Oops. --- qa/wildfly/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/wildfly/build.gradle b/qa/wildfly/build.gradle index 867ad2d526a..50d7c4e61ec 100644 --- a/qa/wildfly/build.gradle +++ b/qa/wildfly/build.gradle @@ -139,7 +139,7 @@ task startWildfly { /* * As soon as we know the management port, we fork a process that will ensure the Wildfly process is killed if we - * teardown abnormally. We skip these tests on Windows so we do no need to worry about CLI compatibility here. + * teardown abnormally. We skip these tests on Windows so we do not need to worry about CLI compatibility here. */ final File script = new File(project.buildDir, "wildfly/wildfly.killer.sh") script.setText( @@ -173,7 +173,7 @@ task configureTransportClient(type: LoggedExec) { } task stopWildfly(type: LoggedExec) { - // we skip these tests on Windows so we do no need to worry about CLI compatibility here + // we skip these tests on Windows so we do not need to worry about CLI compatibility here commandLine "${wildflyInstall}/bin/jboss-cli.sh", "--controller=localhost:${-> managementPort}", "--connect", "command=shutdown" }