mirror of https://gitee.com/bigwinds/arangodb
fix cleanup
This commit is contained in:
parent
afafc47eac
commit
e396681fb8
|
@ -56,6 +56,10 @@ describe('_api/gharial', () => {
|
|||
db._drop(oColName);
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
db._drop(oColName2);
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
db._graphs.remove(graphName);
|
||||
} catch (e) {
|
||||
|
@ -91,7 +95,7 @@ describe('_api/gharial', () => {
|
|||
req = request.get(url + "/" + graphName);
|
||||
} while (req.statusCode !== 200);
|
||||
|
||||
expect(db._collection(eColName)).to.not.be.null;
|
||||
expect(db._collection(eColName)).to.not.be.null;
|
||||
expect(db._collection(vColName)).to.not.be.null;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue