File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
driver/src/test/java/org/neo4j/driver Expand file tree Collapse file tree 2 files changed +5
-1
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
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ 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
+ // 5.0
34
+ public static final String SERVER_IMPORT_DIR = "server.directories.import" ;
33
35
public static final String LISTEN_ADDR = "dbms.default_listen_address" ;
34
36
public static final String IPV6_ENABLED_ADDR = "::" ;
35
37
public static final String BOLT_TLS_LEVEL = "dbms.connector.bolt.tls_level" ;
You can’t perform that action at this time.
0 commit comments