From e70156893c7c28df3eb7e3db7b2d72edc0c519c5 Mon Sep 17 00:00:00 2001 From: Augustin Husson Date: Sat, 11 Nov 2017 21:53:20 +0100 Subject: [PATCH] call parent in setUp and tearDown --- .../Elasticsearch/Helper/Nodowntime/AbstractIndexHelperTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Nexucis/Tests/Elasticsearch/Helper/Nodowntime/AbstractIndexHelperTest.php b/tests/Nexucis/Tests/Elasticsearch/Helper/Nodowntime/AbstractIndexHelperTest.php index 1567ab5..34ca431 100644 --- a/tests/Nexucis/Tests/Elasticsearch/Helper/Nodowntime/AbstractIndexHelperTest.php +++ b/tests/Nexucis/Tests/Elasticsearch/Helper/Nodowntime/AbstractIndexHelperTest.php @@ -28,6 +28,7 @@ public static function setUpBeforeClass() { // load static data self::$documents = json_decode(file_get_contents('http://data.consumerfinance.gov/api/views.json')); + parent::setUpBeforeClass(); } /** @@ -47,6 +48,7 @@ public function tearDown() 'index' => '_all' ]; $this->client->indices()->delete($param); + parent::tearDown(); } public function aliasDataProvider()