We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8632e1a commit 49a61f1Copy full SHA for 49a61f1
driver/src/test/java/org/neo4j/driver/integration/SummaryIT.java
@@ -179,9 +179,9 @@ void shouldContainCorrectStatistics() {
179
180
@Test
181
@EnabledOnNeo4jWith(Neo4jFeature.BOLT_V4)
182
- void shouldGetSystemUpdates() throws Throwable {
+ void shouldGetSystemUpdates() {
183
try (Session session = neo4j.driver().session(forDatabase("system"))) {
184
- Result result = session.run("CREATE USER foo SET PASSWORD 'bar'");
+ Result result = session.run("CREATE USER foo SET PASSWORD 'Testing0'");
185
assertThat(result.consume().counters().containsUpdates(), equalTo(false));
186
assertThat(result.consume().counters().containsSystemUpdates(), equalTo(true));
187
}
0 commit comments