Skip to content

Commit

Permalink
Fix wrong use of server setting config
Browse files Browse the repository at this point in the history
  • Loading branch information
SaschaPeukert committed May 29, 2018
1 parent 7e067be commit fbab35e
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -23,6 +23,7 @@
package org.neo4j.bolt;

import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.Test;

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit fbab35e

Please sign in to comment.