You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2006/12/13 17:33:43 UTC

svn commit: r486718 - /incubator/tuscany/java/sca/kernel/core/src/test/java/org/apache/tuscany/core/loader/PolicySetLoaderTestCase.java

Author: rfeng
Date: Wed Dec 13 08:33:42 2006
New Revision: 486718

URL: http://svn.apache.org/viewvc?view=rev&rev=486718
Log:
The file name referenced in the test case is wrong

Modified:
    incubator/tuscany/java/sca/kernel/core/src/test/java/org/apache/tuscany/core/loader/PolicySetLoaderTestCase.java

Modified: incubator/tuscany/java/sca/kernel/core/src/test/java/org/apache/tuscany/core/loader/PolicySetLoaderTestCase.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/kernel/core/src/test/java/org/apache/tuscany/core/loader/PolicySetLoaderTestCase.java?view=diff&rev=486718&r1=486717&r2=486718
==============================================================================
--- incubator/tuscany/java/sca/kernel/core/src/test/java/org/apache/tuscany/core/loader/PolicySetLoaderTestCase.java (original)
+++ incubator/tuscany/java/sca/kernel/core/src/test/java/org/apache/tuscany/core/loader/PolicySetLoaderTestCase.java Wed Dec 13 08:33:42 2006
@@ -39,7 +39,7 @@
     public void testLoader() throws Exception {
         PolicySetLoader loader = new PolicySetLoader(null);
         XMLInputFactory factory = XMLInputFactory.newInstance();
-        XMLStreamReader reader = factory.createXMLStreamReader(this.getClass().getResourceAsStream("testPolicy.scdl"));
+        XMLStreamReader reader = factory.createXMLStreamReader(this.getClass().getResourceAsStream("TestPolicy.scdl"));
         while (true) {
             int state = reader.next();
             if (START_ELEMENT == state && reader.getName().equals(POLICYSET)) {



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org