Skip to content

Commit

Permalink
[NOID] Fix broken APOC test (neo4j#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
gem-neo4j authored Aug 9, 2024
1 parent 656ddb2 commit 9e7737d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/java/apoc/util/LogsUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ public void shouldReturnInputIfInvalidQuery() {
public void whitespaceDeprecationSucceedsSanitization() {
String sanitized = LogsUtil.sanitizeQuery(
"CREATE USER dum\u0085my IF NOT EXISTS SET PASSWORD 'pass12345' CHANGE NOT REQUIRED");
assertEquals(sanitized, "CREATE USER dum\u0085my IF NOT EXISTS SET PASSWORD '******' CHANGE NOT REQUIRED");
assertEquals(sanitized, "CREATE USER `dum\u0085my` IF NOT EXISTS SET PASSWORD '******' CHANGE NOT REQUIRED");
}
}

0 comments on commit 9e7737d

Please sign in to comment.