From a31b7600af06a51754aad4c8ba1ff7bc44b4105f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Stankiewicz?= Date: Sun, 8 Oct 2023 18:51:02 +0200 Subject: [PATCH] reason - not working tests change application.properties username and password prefix from spring.data.neo4j to spring.neo4j --- complete/src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/complete/src/main/resources/application.properties b/complete/src/main/resources/application.properties index 47a3216..930f019 100644 --- a/complete/src/main/resources/application.properties +++ b/complete/src/main/resources/application.properties @@ -1,3 +1,3 @@ spring.neo4j.uri=bolt://localhost:7687 -spring.data.neo4j.username=neo4j -spring.data.neo4j.password=secret +spring.neo4j.authentication.username=neo4j +spring.neo4j.authentication.password=secret