This is an automated email from the ASF dual-hosted git repository. tv pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
commit 1d14f71d8c4e440d13670f7f9a05eb8390b376f7 Author: Thomas Vandahl <[email protected]> AuthorDate: Fri Aug 14 19:44:58 2020 +0200 Fix test --- .../jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/commons-jcs-core/src/test/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java b/commons-jcs-core/src/test/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java index 4a54786..6b317be 100644 --- a/commons-jcs-core/src/test/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java +++ b/commons-jcs-core/src/test/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheUnitTest.java @@ -23,7 +23,6 @@ import java.sql.SQLException; import org.apache.commons.jcs3.auxiliary.disk.jdbc.TableState; import org.apache.commons.jcs3.auxiliary.disk.jdbc.dsfactory.SharedPoolDataSourceFactory; -import org.apache.commons.jcs3.engine.control.CompositeCacheManager; import junit.framework.TestCase; @@ -60,8 +59,7 @@ public class MySQLDiskCacheUnitTest TableState tableState = new TableState( tableName ); tableState.setState( TableState.OPTIMIZATION_RUNNING ); - MySQLDiskCache<String, String> cache = new MySQLDiskCache<>( attributes, dsFactory, tableState, - CompositeCacheManager.getUnconfiguredInstance() ); + MySQLDiskCache<String, String> cache = new MySQLDiskCache<>(attributes, dsFactory, tableState); // DO WORK Object result = cache.processGet( "myKey" );
