Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
injectives committed May 10, 2022
1 parent a8dfa6e commit f378196
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
class LoadCSVIT
{
@RegisterExtension
static final DatabaseExtension neo4j = new DatabaseExtension( Neo4jSettings.TEST_SETTINGS.without( Neo4jSettings.IMPORT_DIR ) );
static final DatabaseExtension neo4j = new DatabaseExtension( Neo4jSettings.TEST_SETTINGS
.without( Neo4jSettings.IMPORT_DIR )
.without( Neo4jSettings.SERVER_IMPORT_DIR ) );

@Test
void shouldLoadCSV() throws Throwable
Expand Down Expand Up @@ -69,8 +71,6 @@ void shouldLoadCSV() throws Throwable
"} IN TRANSACTIONS\n" +
"RETURN count(*) AS c";

System.out.println( query );

Result result = session.run( query, parameters( "csvFileUrl", csvFileUrl ) );

// Then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class Neo4jSettings
{
public static final String DATA_DIR = "dbms.directories.data";
public static final String IMPORT_DIR = "dbms.directories.import";
public static final String SERVER_IMPORT_DIR = "server.directories.import";
public static final String LISTEN_ADDR = "dbms.default_listen_address";
public static final String IPV6_ENABLED_ADDR = "::";
public static final String BOLT_TLS_LEVEL = "dbms.connector.bolt.tls_level";
Expand Down

0 comments on commit f378196

Please sign in to comment.