Skip to content

Commit a305a6e

Browse files
committed
refactor: lint
1 parent 56d1b6d commit a305a6e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

parser/tests/integration/test_parse_unparse_integration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,9 @@ def test_patcher_with_modifications(neo4j):
326326
assert result.values() == [["en:cookies"]]
327327

328328
# 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(*)")
329+
result = session.run(
330+
"MATCH (n:(p_test_branch&(ENTRY|TEXT|SYNONYMS|STOPWORDS))) RETURN COUNT(*)"
331+
)
330332
number_of_nodes = result.value()[0]
331333
assert number_of_nodes == 15
332334
result = session.run("MATCH (n:p_test_branch:REMOVED_ENTRY) RETURN COUNT(*)")

0 commit comments

Comments
 (0)