File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/test/java/org/springframework/data/neo4j/test Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 2323import java .lang .reflect .Modifier ;
2424import java .util .Arrays ;
2525import java .util .Collections ;
26+ import java .util .HashMap ;
2627import java .util .HashSet ;
2728import java .util .List ;
2829import java .util .Locale ;
@@ -298,6 +299,10 @@ static class ContainerAdapter implements ExtensionContext.Store.CloseableResourc
298299 .withoutAuthentication ()
299300 .withEnv ("NEO4J_ACCEPT_LICENSE_AGREEMENT" ,
300301 Optional .ofNullable (System .getenv (SYS_PROPERTY_NEO4J_ACCEPT_COMMERCIAL_EDITION )).orElse ("no" ))
302+ .withTmpFs (new HashMap <String , String >() {{ // K.W. Gedächtnis-Double-Brace-Initialization
303+ put ("/log" , "rw" );
304+ put ("/data" , "rw" );
305+ }})
301306 .withReuse (containerReuseSupported );
302307
303308 public String getBoltUrl () {
You can’t perform that action at this time.
0 commit comments