Skip to content

Commit

Permalink
call parent in setUp and tearDown
Browse files Browse the repository at this point in the history
  • Loading branch information
Nexucis committed Nov 11, 2017
1 parent 5123214 commit e701568
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

/**
Expand All @@ -47,6 +48,7 @@ public function tearDown()
'index' => '_all'
];
$this->client->indices()->delete($param);
parent::tearDown();
}

public function aliasDataProvider()
Expand Down

0 comments on commit e701568

Please sign in to comment.