diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-07-01 09:55:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 09:55:23 +0200 |
commit | 7fbfa5cd99dca4260e7b819a2157f0421955ed10 (patch) | |
tree | 2936d650037470aae2164101369d86d7332515cb | |
parent | 1224869b22efc18c07431e6c26808286efe1c7ba (diff) | |
parent | 470318db36dabb4976e0a1947e7579b015ee62f0 (diff) | |
download | nextcloud-server-7fbfa5cd99dca4260e7b819a2157f0421955ed10.tar.gz nextcloud-server-7fbfa5cd99dca4260e7b819a2157f0421955ed10.zip |
Merge pull request #16167 from nextcloud/fix/oauth2/tests
Fix the actual oauth2 tests
-rw-r--r-- | apps/oauth2/tests/Settings/AdminTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/tests/Settings/AdminTest.php b/apps/oauth2/tests/Settings/AdminTest.php index 8b0883c7564..022ae913e1e 100644 --- a/apps/oauth2/tests/Settings/AdminTest.php +++ b/apps/oauth2/tests/Settings/AdminTest.php @@ -51,6 +51,6 @@ class AdminTest extends TestCase { } public function testGetPriority() { - $this->assertSame(0, $this->admin->getPriority()); + $this->assertSame(100, $this->admin->getPriority()); } } |