Skip to content

Commit 5ccbcf9

Browse files
author
Zhen Li
committed
Fix cypher queries to drop contraints and indexes
1 parent 713a5c6 commit 5ccbcf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/rx/summary.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ describe('#integration-rx summary', () => {
670670

671671
const indices = await session.run('CALL db.indexes()')
672672
for (let i = 0; i < indices.records.length; i++) {
673-
await session.run(`DROP ${getName(indices.records[i])}`)
673+
await session.run(`DROP INDEX ${getName(indices.records[i])}`)
674674
}
675675
} finally {
676676
await session.close()

0 commit comments

Comments
 (0)