You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by ma...@apache.org on 2015/07/23 20:17:25 UTC

svn commit: r1692424 - in /oodt/trunk: catalog/src/test/java/org/apache/oodt/cas/catalog/system/impl/TestCatalogServiceLocal.java grid/web-grid.iml mvn/plugins/cas-install/maven-cas-install-plugin.iml xmlquery/oodt-xmlquery.iml

Author: mattmann
Date: Thu Jul 23 18:17:25 2015
New Revision: 1692424

URL: http://svn.apache.org/r1692424
Log:
Remove iml files and small fixes to CAS catalog tests contributed by Radu Manole <ma...@gmail.com> this closes #22.

Removed:
    oodt/trunk/grid/web-grid.iml
    oodt/trunk/mvn/plugins/cas-install/maven-cas-install-plugin.iml
    oodt/trunk/xmlquery/oodt-xmlquery.iml
Modified:
    oodt/trunk/catalog/src/test/java/org/apache/oodt/cas/catalog/system/impl/TestCatalogServiceLocal.java

Modified: oodt/trunk/catalog/src/test/java/org/apache/oodt/cas/catalog/system/impl/TestCatalogServiceLocal.java
URL: http://svn.apache.org/viewvc/oodt/trunk/catalog/src/test/java/org/apache/oodt/cas/catalog/system/impl/TestCatalogServiceLocal.java?rev=1692424&r1=1692423&r2=1692424&view=diff
==============================================================================
--- oodt/trunk/catalog/src/test/java/org/apache/oodt/cas/catalog/system/impl/TestCatalogServiceLocal.java (original)
+++ oodt/trunk/catalog/src/test/java/org/apache/oodt/cas/catalog/system/impl/TestCatalogServiceLocal.java Thu Jul 23 18:17:25 2015
@@ -179,7 +179,7 @@ public class TestCatalogServiceLocal ext
 		factory.setJdbcUrl(url);
 		factory.setPass(pass);
 		factory.setUser(user);
-		factory.setTablesFile("src/test/resources/test-mapper-cat.sql");
+		factory.setTablesFile(this.getClass().getResource("/test-mapper-cat.sql").getPath());
 		return factory;
 	}
 
@@ -195,7 +195,7 @@ public class TestCatalogServiceLocal ext
 		indexFactory.setJdbcUrl(url);
 		indexFactory.setPass(pass);
 		indexFactory.setUser(user);
-		indexFactory.setTablesFile("src/test/resources/test-index-cat.sql");
+		indexFactory.setTablesFile(this.getClass().getResource("/test-index-cat.sql").getPath());
 		return indexFactory;
 	}