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 56d1b6d commit a305a6eCopy full SHA for a305a6e
parser/tests/integration/test_parse_unparse_integration.py
@@ -326,7 +326,9 @@ def test_patcher_with_modifications(neo4j):
326
assert result.values() == [["en:cookies"]]
327
328
# just quick check it runs ok with total number of nodes
329
- result = session.run("MATCH (n:(p_test_branch&(ENTRY|TEXT|SYNONYMS|STOPWORDS))) RETURN COUNT(*)")
+ result = session.run(
330
+ "MATCH (n:(p_test_branch&(ENTRY|TEXT|SYNONYMS|STOPWORDS))) RETURN COUNT(*)"
331
+ )
332
number_of_nodes = result.value()[0]
333
assert number_of_nodes == 15
334
result = session.run("MATCH (n:p_test_branch:REMOVED_ENTRY) RETURN COUNT(*)")
0 commit comments