Commit fbab35e4 authored by Sascha Peukert's avatar Sascha Peukert
Browse files

Fix wrong use of server setting config

parent 7e067bed
No related merge requests found
Showing with 3 additions and 1 deletion
+3 -1
......@@ -23,6 +23,7 @@
package org.neo4j.bolt;
import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.Test;
......@@ -54,8 +55,9 @@ public class CypherOverBoltIT
{
@Rule
public final SuppressOutput suppressOutput = SuppressOutput.suppressAll();
@Rule
public Neo4jRule graphDb = new Neo4jRule().withConfig( ServerSettings.script_sandboxing_enabled, Settings.TRUE );
public Neo4jRule graphDb = new Neo4jRule().withConfig( ServerSettings.script_enabled, "true" );
private URL url;
private final int lineCountInCSV = 3; // needs to be >= 2
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment