epugh 2003/03/17 15:09:55
Modified: src/test/org/apache/turbine/services/template InitTest.java
Log:
Minor patch to fixes junit version issue. Maven only supports up to 3.7.x, and this
method is a 3.8 method.
Revision Changes Path
1.3 +2 -2
jakarta-turbine-2/src/test/org/apache/turbine/services/template/InitTest.java
Index: InitTest.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-2/src/test/org/apache/turbine/services/template/InitTest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- InitTest.java 9 Mar 2003 03:08:47 -0000 1.2
+++ InitTest.java 17 Mar 2003 23:09:55 -0000 1.3
@@ -100,7 +100,7 @@
{
// Can we start the service?
- assertFalse("Could not load Service!", ts == null);
+ assertTrue("Could not load Service!", ts != null);
// Did we register the Velocity Service correctly for "vm" templates?
VelocityService vs = (VelocityService) TurbineServices
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]