diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-02-22 10:10:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 10:10:57 +0100 |
commit | 54a5fe2aaf7b65389bae141ab6283cc92a920bed (patch) | |
tree | e99dd9bb02b860c9f7701896fc0bb425ddc55e3c | |
parent | a08dfd9951dfe24a7a9c2c4b1c8bbdf81558944d (diff) | |
parent | cbb735544ae074e720c3416e9c56a940b2a85a7f (diff) | |
download | nextcloud-server-54a5fe2aaf7b65389bae141ab6283cc92a920bed.tar.gz nextcloud-server-54a5fe2aaf7b65389bae141ab6283cc92a920bed.zip |
Merge pull request #3566 from nextcloud/setUpScenario1
Use clearer name setUpScenario
5 files changed, 5 insertions, 5 deletions
diff --git a/build/integration/features/bootstrap/Auth.php b/build/integration/features/bootstrap/Auth.php index 61cad0dc145..46bb94a2b20 100644 --- a/build/integration/features/bootstrap/Auth.php +++ b/build/integration/features/bootstrap/Auth.php @@ -31,7 +31,7 @@ trait Auth { private $clientToken; /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); $this->responseXml = ''; } diff --git a/build/integration/features/bootstrap/CalDavContext.php b/build/integration/features/bootstrap/CalDavContext.php index cae0089875f..4843dde135a 100644 --- a/build/integration/features/bootstrap/CalDavContext.php +++ b/build/integration/features/bootstrap/CalDavContext.php @@ -50,7 +50,7 @@ class CalDavContext implements \Behat\Behat\Context\Context { } /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); $this->responseXml = ''; } diff --git a/build/integration/features/bootstrap/CardDavContext.php b/build/integration/features/bootstrap/CardDavContext.php index 2dce688ab85..8ff8b55d28d 100644 --- a/build/integration/features/bootstrap/CardDavContext.php +++ b/build/integration/features/bootstrap/CardDavContext.php @@ -50,7 +50,7 @@ class CardDavContext implements \Behat\Behat\Context\Context { } /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); $this->responseXml = ''; } diff --git a/build/integration/features/bootstrap/ChecksumsContext.php b/build/integration/features/bootstrap/ChecksumsContext.php index 3d2d9000794..4dd43db852f 100644 --- a/build/integration/features/bootstrap/ChecksumsContext.php +++ b/build/integration/features/bootstrap/ChecksumsContext.php @@ -48,7 +48,7 @@ class ChecksumsContext implements \Behat\Behat\Context\Context { } /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); } diff --git a/build/integration/features/bootstrap/TagsContext.php b/build/integration/features/bootstrap/TagsContext.php index 46ce869c86a..3a48cce8aea 100644 --- a/build/integration/features/bootstrap/TagsContext.php +++ b/build/integration/features/bootstrap/TagsContext.php @@ -50,7 +50,7 @@ class TagsContext implements \Behat\Behat\Context\Context { } /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); } |