You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by an...@apache.org on 2014/03/26 09:28:32 UTC

svn commit: r1581743 - /syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml

Author: andreapatricelli
Date: Wed Mar 26 08:28:31 2014
New Revision: 1581743

URL: http://svn.apache.org/r1581743
Log:
test JDBC context reverted to correct configuration

Modified:
    syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml

Modified: syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml
URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml?rev=1581743&r1=1581742&r2=1581743&view=diff
==============================================================================
--- syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml (original)
+++ syncope/branches/1_1_X/core/src/test/resources/testJDBCContext.xml Wed Mar 26 08:28:31 2014
@@ -24,10 +24,10 @@ under the License.
 
     <bean id="testDataSource"
         class="org.springframework.jdbc.datasource.DriverManagerDataSource">
-        <property name="driverClassName" value="org.h2.Driver"/>
-        <property name="url" value="jdbc:h2:tcp://localhost:9092/testdb"/>
-        <property name="username" value="sa"/>
-        <property name="password" value="sa"/>
+        <property name="driverClassName" value="${testdb.driver}"/>
+        <property name="url" value="${testdb.url}"/>
+        <property name="username" value="${testdb.username}"/>
+        <property name="password" value="${testdb.password}"/>
     </bean>
 
 </beans>