Skip to content
Snippets Groups Projects
Commit aa01d236 authored by vkovtun's avatar vkovtun
Browse files

SSDM-13396: Fixing failing tests in JythonBasedAggregationServiceReportingPluginTest.

parent 25a515fe
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -21,6 +21,7 @@ import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
import ch.systemsx.cisd.common.jython.evaluator.JythonEvaluatorSpringComponent;
import net.lemnik.eodsql.DataSet;
import org.jmock.Expectations;
......@@ -95,6 +96,10 @@ public class JythonBasedAggregationServiceReportingPluginTest extends AbstractFi
@BeforeMethod
public void setUpTest()
{
final Properties properties = new Properties();
properties.setProperty(JythonEvaluatorSpringComponent.JYTHON_VERSION_KEY, "2.7");
new JythonEvaluatorSpringComponent(properties); // set up Jython evaluator factory
context = new Mockery();
searchService = context.mock(ISearchService.class);
queryService = context.mock(IDataSourceQueryService.class);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment