summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Tirk <paultirk@paultirk.com>2021-01-09 18:37:44 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 10:23:11 +0200
commita8dddd72fbba315be9c1d3f2b8d23abb48bc6914 (patch)
tree9224346d46fa57c22f325fc4fe3c57f868a33af0 /tests
parentcce826fc72c313835a2271ece59c365c33fe38ee (diff)
linting
Signed-off-by: Paul Tirk <paultirk@paultirk.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Controller/FolderApiV2ControllerTest.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/Unit/Controller/FolderApiV2ControllerTest.php b/tests/Unit/Controller/FolderApiV2ControllerTest.php
index 31f370d12..ca3d7f575 100644
--- a/tests/Unit/Controller/FolderApiV2ControllerTest.php
+++ b/tests/Unit/Controller/FolderApiV2ControllerTest.php
@@ -126,9 +126,7 @@ class FolderApiV2ControllerTest extends TestCase
$data = $response->getData();
$this->assertEquals($msg, $data['error']['message']);
- $this->assertEquals(
- Http::STATUS_BAD_REQUEST, $response->getStatus()
- );
+ $this->assertEquals(Http::STATUS_BAD_REQUEST, $response->getStatus());
}
@@ -247,9 +245,6 @@ class FolderApiV2ControllerTest extends TestCase
$data = $response->getData();
$this->assertEquals($this->msg, $data['error']['message']);
- $this->assertEquals(
- Http::STATUS_UNPROCESSABLE_ENTITY, $response->getStatus()
- );
+ $this->assertEquals(Http::STATUS_UNPROCESSABLE_ENTITY, $response->getStatus());
}
-
}