CLEANUP: Remove debugging code

This commit is contained in:
Daniel Siepmann 2016-12-12 21:18:22 +01:00
parent d4ccf6a7ea
commit dc8e04b449

View file

@ -54,9 +54,7 @@ abstract class AbstractFunctionalTestCase extends CoreTestCase
public function tearDown() public function tearDown()
{ {
// Delete everything so next test starts clean. // Delete everything so next test starts clean.
if ($this->client) {
$this->client->getIndex('_all')->delete(); $this->client->getIndex('_all')->delete();
$this->client->getIndex('_all')->clearCache(); $this->client->getIndex('_all')->clearCache();
}
} }
} }