From c7594db418939c91d4bf94a54a2cb7633daef3b4 Mon Sep 17 00:00:00 2001
From: Peter Donald
Date: Mon, 25 Mar 2002 10:39:56 +0000
Subject: [PATCH] Fix example to use valid XML.
Submitted by: pedro_cristian@yahoo.fr
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272018 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/OptionalTasks/test.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/manual/OptionalTasks/test.html b/docs/manual/OptionalTasks/test.html
index 03dfd348c..b65009147 100644
--- a/docs/manual/OptionalTasks/test.html
+++ b/docs/manual/OptionalTasks/test.html
@@ -56,9 +56,9 @@ which has content that specifies tasklet classname.
<test showSuccess="false" showBanner="false" showTrace="true" forceShowTrace="true">
<classpath refid="test.classpath"/>
- <testlet>org.foo.MyTestlet<testlet/>
- <testlet>org.foo.MyOtherTestlet<testlet/>
-<test/>
+ <testlet>org.foo.MyTestlet</testlet>
+ <testlet>org.foo.MyOtherTestlet</testlet>
+</test>
The above will run the testlets org.foo.MyTestlet and org.foo.MyOtherTestlet