Merge pull request #3566 from nextcloud/setUpScenario1

Use clearer name setUpScenario
This commit is contained in:
Lukas Reschke 2017-02-22 10:10:57 +01:00 committed by GitHub
commit 54a5fe2aaf
5 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ trait Auth {
private $clientToken; private $clientToken;
/** @BeforeScenario */ /** @BeforeScenario */
public function tearUpScenario() { public function setUpScenario() {
$this->client = new Client(); $this->client = new Client();
$this->responseXml = ''; $this->responseXml = '';
} }

View File

@ -50,7 +50,7 @@ class CalDavContext implements \Behat\Behat\Context\Context {
} }
/** @BeforeScenario */ /** @BeforeScenario */
public function tearUpScenario() { public function setUpScenario() {
$this->client = new Client(); $this->client = new Client();
$this->responseXml = ''; $this->responseXml = '';
} }

View File

@ -50,7 +50,7 @@ class CardDavContext implements \Behat\Behat\Context\Context {
} }
/** @BeforeScenario */ /** @BeforeScenario */
public function tearUpScenario() { public function setUpScenario() {
$this->client = new Client(); $this->client = new Client();
$this->responseXml = ''; $this->responseXml = '';
} }

View File

@ -48,7 +48,7 @@ class ChecksumsContext implements \Behat\Behat\Context\Context {
} }
/** @BeforeScenario */ /** @BeforeScenario */
public function tearUpScenario() { public function setUpScenario() {
$this->client = new Client(); $this->client = new Client();
} }

View File

@ -50,7 +50,7 @@ class TagsContext implements \Behat\Behat\Context\Context {
} }
/** @BeforeScenario */ /** @BeforeScenario */
public function tearUpScenario() { public function setUpScenario() {
$this->client = new Client(); $this->client = new Client();
} }