From 78afd1cfb2e8196079a524a80d557f653fbf976d Mon Sep 17 00:00:00 2001 From: Gerrit Meier Date: Tue, 6 Jun 2023 10:03:25 +0200 Subject: [PATCH] Adjust test log filter list. --- .../org/springframework/data/neo4j/test/TestLogFilter.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/data/neo4j/test/TestLogFilter.java b/src/test/java/org/springframework/data/neo4j/test/TestLogFilter.java index 62ed527d3..29aafc6fc 100644 --- a/src/test/java/org/springframework/data/neo4j/test/TestLogFilter.java +++ b/src/test/java/org/springframework/data/neo4j/test/TestLogFilter.java @@ -28,7 +28,9 @@ public class TestLogFilter extends Filter { private static final List FILTER_MESSAGES = List.of( "ClientNotification.Statement.UnknownRelationshipTypeWarning", - "ClientNotification.Statement.UnknownPropertyKeyWarning" + "ClientNotification.Statement.UnknownLabelWarning", + "ClientNotification.Statement.UnknownPropertyKeyWarning", + "ClientNotification.Statement.FeatureDeprecationWarning" ); @Override