You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by gi...@apache.org on 2018/03/12 19:20:48 UTC

ant git commit: More corrections

Repository: ant
Updated Branches:
  refs/heads/master e9a360d5a -> e1bc00c63


More corrections

Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/e1bc00c6
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/e1bc00c6
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/e1bc00c6

Branch: refs/heads/master
Commit: e1bc00c6332a0f3f381a46a4fc30045b0826b466
Parents: e9a360d
Author: Gintas Grigelionis <gi...@apache.org>
Authored: Mon Mar 12 20:20:35 2018 +0100
Committer: Gintas Grigelionis <gi...@apache.org>
Committed: Mon Mar 12 20:20:35 2018 +0100

----------------------------------------------------------------------
 manual/tutorial-HelloWorldWithAnt.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/e1bc00c6/manual/tutorial-HelloWorldWithAnt.html
----------------------------------------------------------------------
diff --git a/manual/tutorial-HelloWorldWithAnt.html b/manual/tutorial-HelloWorldWithAnt.html
index 5d1f306..02d9f72 100644
--- a/manual/tutorial-HelloWorldWithAnt.html
+++ b/manual/tutorial-HelloWorldWithAnt.html
@@ -386,7 +386,7 @@ public class HelloWorldTest {
 
 <p>Because we don't have real business logic to test, this test class is very small: just showing how to start. For
 further information see the JUnit documentation [3] and the manual of <a href="Tasks/junit.html">junit</a> task.  Now we
-add a <code>junit</code>code> instruction to our buildfile:</p>
+add a <code>junit</code> instruction to our buildfile:</p>
 
 <pre>
     ...
@@ -428,9 +428,9 @@ the future just by naming them <code>*Test.java</code>.  This is a common naming
 <pre class="output">
 ...
 junit:
-    [junit] Running HelloWorldTest
-    [junit] Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0,01 sec
-    [junit] Test HelloWorldTest FAILED
+    [junit] Running oata.HelloWorldTest
+    [junit] Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0,01 sec
+    [junit] Test oata.HelloWorldTest FAILED
 
 BUILD SUCCESSFUL
 ...</pre>