We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 713a5c6 commit 2ad3878Copy full SHA for 2ad3878
test/rx/summary.test.js
@@ -665,12 +665,12 @@ describe('#integration-rx summary', () => {
665
try {
666
const constraints = await session.run('CALL db.constraints()')
667
for (let i = 0; i < constraints.records.length; i++) {
668
- await session.run(`DROP ${getName(constraints.records[i])}`)
+ await session.run(`DROP CONSTRAINT ${getName(constraints.records[i])}`)
669
}
670
671
const indices = await session.run('CALL db.indexes()')
672
for (let i = 0; i < indices.records.length; i++) {
673
- await session.run(`DROP ${getName(indices.records[i])}`)
+ await session.run(`DROP INDEX ${getName(indices.records[i])}`)
674
675
} finally {
676
await session.close()
0 commit comments