You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2004/12/11 03:35:44 UTC

svn commit: r111568 - /incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java

Author: mmerz
Date: Fri Dec 10 18:35:43 2004
New Revision: 111568

URL: http://svn.apache.org/viewcvs?view=rev&rev=111568
Log:
Fixed the path in the test that was causing Cruise Control errors

Contributor: Daryoush Mehrtash

Modified:
   incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java

Modified: incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java
Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java?view=diff&rev=111568&p1=incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java&r1=111567&p2=incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java&r2=111568
==============================================================================
--- incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java	(original)
+++ incubator/beehive/trunk/wsm/drt/tests/org/apache/beehive/wsm/jsr181/wsdl/WSDL2AnnotatedJavaTest.java	Fri Dec 10 18:35:43 2004
@@ -72,7 +72,7 @@
 
     public void testSrcCodeGeneration() throws Exception {
             FileWriter fw = new FileWriter("resultfile.java", false);
-            FileInputStream fis = new FileInputStream("./tests/FooWSDL.xml");
+            FileInputStream fis = new FileInputStream("./drt/tests/FooWSDL.xml");
             Wsdl2AJava processor = new Wsdl2AJava();
             processor.init();
             processor.generateAnnotatedJavaFromWSDL(fis, fw);