From b801ca4f35492b91916e20560fa79b676c994e46 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 21 Feb 2017 15:53:03 +0545 Subject: [PATCH 1/2] Use clearer name setUpScenario --- build/integration/features/bootstrap/Auth.php | 2 +- build/integration/features/bootstrap/CalDavContext.php | 2 +- build/integration/features/bootstrap/CardDavContext.php | 2 +- build/integration/features/bootstrap/ChecksumsContext.php | 2 +- build/integration/features/bootstrap/TagsContext.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/integration/features/bootstrap/Auth.php b/build/integration/features/bootstrap/Auth.php index 61cad0dc1456e..46bb94a2b20c9 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 cae0089875fa4..4843dde135a96 100644 --- a/build/integration/features/bootstrap/CalDavContext.php +++ b/build/integration/features/bootstrap/CalDavContext.php @@ -50,7 +50,7 @@ public function __construct($baseUrl) { } /** @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 2dce688ab857f..8ff8b55d28dce 100644 --- a/build/integration/features/bootstrap/CardDavContext.php +++ b/build/integration/features/bootstrap/CardDavContext.php @@ -50,7 +50,7 @@ public function __construct($baseUrl) { } /** @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 3d2d90007947c..4dd43db852f65 100644 --- a/build/integration/features/bootstrap/ChecksumsContext.php +++ b/build/integration/features/bootstrap/ChecksumsContext.php @@ -48,7 +48,7 @@ public function __construct($baseUrl) { } /** @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 46ce869c86af8..3a48cce8aea10 100644 --- a/build/integration/features/bootstrap/TagsContext.php +++ b/build/integration/features/bootstrap/TagsContext.php @@ -50,7 +50,7 @@ public function __construct($baseUrl) { } /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); } From 092d00d8ae73ba6543e05888af05cb5bdcf6d3b7 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 21 Feb 2017 15:53:03 +0545 Subject: [PATCH 2/2] Use clearer name setUpScenario Signed-off-by: Phil Davis --- build/integration/features/bootstrap/Auth.php | 2 +- build/integration/features/bootstrap/CalDavContext.php | 2 +- build/integration/features/bootstrap/CardDavContext.php | 2 +- build/integration/features/bootstrap/ChecksumsContext.php | 2 +- build/integration/features/bootstrap/TagsContext.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build/integration/features/bootstrap/Auth.php b/build/integration/features/bootstrap/Auth.php index 61cad0dc1456e..46bb94a2b20c9 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 cae0089875fa4..4843dde135a96 100644 --- a/build/integration/features/bootstrap/CalDavContext.php +++ b/build/integration/features/bootstrap/CalDavContext.php @@ -50,7 +50,7 @@ public function __construct($baseUrl) { } /** @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 2dce688ab857f..8ff8b55d28dce 100644 --- a/build/integration/features/bootstrap/CardDavContext.php +++ b/build/integration/features/bootstrap/CardDavContext.php @@ -50,7 +50,7 @@ public function __construct($baseUrl) { } /** @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 3d2d90007947c..4dd43db852f65 100644 --- a/build/integration/features/bootstrap/ChecksumsContext.php +++ b/build/integration/features/bootstrap/ChecksumsContext.php @@ -48,7 +48,7 @@ public function __construct($baseUrl) { } /** @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 46ce869c86af8..3a48cce8aea10 100644 --- a/build/integration/features/bootstrap/TagsContext.php +++ b/build/integration/features/bootstrap/TagsContext.php @@ -50,7 +50,7 @@ public function __construct($baseUrl) { } /** @BeforeScenario */ - public function tearUpScenario() { + public function setUpScenario() { $this->client = new Client(); }