File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
driver/src/test/java/org/neo4j/driver Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 40
40
class LoadCSVIT
41
41
{
42
42
@ RegisterExtension
43
- static final DatabaseExtension neo4j = new DatabaseExtension ( Neo4jSettings .TEST_SETTINGS .without ( Neo4jSettings .IMPORT_DIR ) );
43
+ static final DatabaseExtension neo4j = new DatabaseExtension ( Neo4jSettings .TEST_SETTINGS
44
+ .without ( Neo4jSettings .IMPORT_DIR )
45
+ .without ( Neo4jSettings .SERVER_IMPORT_DIR ) );
44
46
45
47
@ Test
46
48
void shouldLoadCSV () throws Throwable
@@ -69,8 +71,6 @@ void shouldLoadCSV() throws Throwable
69
71
"} IN TRANSACTIONS\n " +
70
72
"RETURN count(*) AS c" ;
71
73
72
- System .out .println ( query );
73
-
74
74
Result result = session .run ( query , parameters ( "csvFileUrl" , csvFileUrl ) );
75
75
76
76
// Then
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ public class Neo4jSettings
30
30
{
31
31
public static final String DATA_DIR = "dbms.directories.data" ;
32
32
public static final String IMPORT_DIR = "dbms.directories.import" ;
33
+ public static final String SERVER_IMPORT_DIR = "server.directories.import" ;
33
34
public static final String LISTEN_ADDR = "dbms.default_listen_address" ;
34
35
public static final String IPV6_ENABLED_ADDR = "::" ;
35
36
public static final String BOLT_TLS_LEVEL = "dbms.connector.bolt.tls_level" ;
You can’t perform that action at this time.
0 commit comments