Fixed test class name

This commit is contained in:
Luca Frosini 2021-11-02 15:10:55 +01:00
parent d574715763
commit e84ec43c5a
1 changed files with 2 additions and 2 deletions

View File

@ -18,13 +18,13 @@ import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CouchBaseConnectorTest extends ContextTest {
public class PostgreSQLConnectorTest extends ContextTest {
private static Logger logger = LoggerFactory.getLogger(AccountingAggregatorPluginTest.class);
private PostgreSQLConnector postgreSQLConnector;
public CouchBaseConnectorTest() throws Exception {
public PostgreSQLConnectorTest() throws Exception {
ContextTest.setContextByName(ROOT_DEV_SCOPE);
postgreSQLConnector = new PostgreSQLConnector();
}