Use clearer name setUpScenario
Signed-off-by: Phil Davis <phil.davis@inf.org>
This commit is contained in:
parent
d754227b4c
commit
cbb735544a
|
@ -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 = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 = '';
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue