Author: mriou
Date: Fri Mar 28 16:41:55 2008
New Revision: 642437

URL: http://svn.apache.org/viewvc?rev=642437&view=rev
Log:
Damn Java 5 that stole the assert keyword from junit.

Modified:
    
ode/branches/APACHE_ODE_1.1/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java

Modified: 
ode/branches/APACHE_ODE_1.1/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java?rev=642437&r1=642436&r2=642437&view=diff
==============================================================================
--- 
ode/branches/APACHE_ODE_1.1/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
 (original)
+++ 
ode/branches/APACHE_ODE_1.1/axis2-war/src/test/java/org/apache/ode/axis2/ServiceFaultCatchTest.java
 Fri Mar 28 16:41:55 2008
@@ -29,7 +29,7 @@
             String response = 
server.sendRequestFile("http://localhost:8080/processes/helloWorld";,
                     bundleName, "testRequest.soap");
 
-            assert(response.indexOf("Something went wrong. Fortunately, it was 
meant to be.") >= 0);
+            assertTrue(response.indexOf("Something went wrong. Fortunately, it 
was meant to be.") >= 0);
         } finally {
             server.undeployProcess(bundleName);
         }


Reply via email to