summaryrefslogtreecommitdiffstats
path: root/tests/unit/Service/SocialApiServiceTest.php
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2021-03-16 07:58:12 +0000
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-03-16 09:54:14 +0100
commit2a3950e425d0caac6ba3fa7bbbe84003f6f5cb99 (patch)
treea29d67a7fdd0c1a1bc66a45619ef82583165db61 /tests/unit/Service/SocialApiServiceTest.php
parent64b1808c02f67f7cf0c8ba66c8fd9a1ca793f08a (diff)
Bump nextcloud/coding-standard from 0.3.0 to 0.5.0
Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 0.3.0 to 0.5.0. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v0.3.0...v0.5.0) Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'tests/unit/Service/SocialApiServiceTest.php')
-rw-r--r--tests/unit/Service/SocialApiServiceTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/Service/SocialApiServiceTest.php b/tests/unit/Service/SocialApiServiceTest.php
index eba6d9a3..9c2ab925 100644
--- a/tests/unit/Service/SocialApiServiceTest.php
+++ b/tests/unit/Service/SocialApiServiceTest.php
@@ -109,10 +109,10 @@ class SocialApiServiceTest extends TestCase {
public function updateAddressbookProvider() {
return [
- 'not user enabled' => ['yes', 'no', Http::STATUS_FORBIDDEN],
- 'not admin allowed' => ['no', 'yes', Http::STATUS_FORBIDDEN],
- 'not allowed, not enabled' => ['no', 'no', Http::STATUS_FORBIDDEN],
- 'allowed and enabled' => ['yes', 'yes', Http::STATUS_OK],
+ 'not user enabled' => ['yes', 'no', Http::STATUS_FORBIDDEN],
+ 'not admin allowed' => ['no', 'yes', Http::STATUS_FORBIDDEN],
+ 'not allowed, not enabled' => ['no', 'no', Http::STATUS_FORBIDDEN],
+ 'allowed and enabled' => ['yes', 'yes', Http::STATUS_OK],
];
}