summaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/AppConfiguration.php
diff options
context:
space:
mode:
Diffstat (limited to 'build/integration/features/bootstrap/AppConfiguration.php')
-rw-r--r--build/integration/features/bootstrap/AppConfiguration.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/AppConfiguration.php b/build/integration/features/bootstrap/AppConfiguration.php
index 5752150e8d6..39fee5e361a 100644
--- a/build/integration/features/bootstrap/AppConfiguration.php
+++ b/build/integration/features/bootstrap/AppConfiguration.php
@@ -62,7 +62,7 @@ trait AppConfiguration {
$body = new \Behat\Gherkin\Node\TableNode([['value', $value]]);
$this->sendingToWith('post', "/apps/testing/api/v1/app/{$app}/{$parameter}", $body);
$this->theHTTPStatusCodeShouldBe('200');
- if ($this->apiVersion == 1) {
+ if ($this->apiVersion === 1) {
$this->theOCSStatusCodeShouldBe('100');
}
}
@@ -70,7 +70,7 @@ trait AppConfiguration {
protected function setStatusTestingApp($enabled) {
$this->sendingTo(($enabled ? 'post' : 'delete'), '/cloud/apps/testing');
$this->theHTTPStatusCodeShouldBe('200');
- if ($this->apiVersion == 1) {
+ if ($this->apiVersion === 1) {
$this->theOCSStatusCodeShouldBe('100');
}