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 1f29a48 commit 4fa33f5Copy full SHA for 4fa33f5
tests/DocumentBasicTest.php
@@ -27,6 +27,13 @@ public function setUp()
27
{
28
$this->connection = getConnection();
29
$this->collectionHandler = new CollectionHandler($this->connection);
30
+
31
+ try {
32
+ $this->collectionHandler->drop('ArangoDB_PHP_TestSuite_TestCollection_01');
33
+ } catch (\Exception $e) {
34
+ // don't bother us, if it's already deleted.
35
+ }
36
37
$this->collection = new Collection();
38
$this->collection->setName('ArangoDB_PHP_TestSuite_TestCollection_01');
39
$this->collectionHandler->create($this->collection);
0 commit comments