Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Neo4jsource
Commits
fbab35e4
Commit
fbab35e4
authored
6 years ago
by
Sascha Peukert
Browse files
Options
Download
Email Patches
Plain Diff
Fix wrong use of server setting config
parent
7e067bed
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
integrationtests/src/test/java/org/neo4j/bolt/CypherOverBoltIT.java
+3
-1
...ntests/src/test/java/org/neo4j/bolt/CypherOverBoltIT.java
with
3 additions
and
1 deletion
+3
-1
integrationtests/src/test/java/org/neo4j/bolt/CypherOverBoltIT.java
+
3
-
1
View file @
fbab35e4
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help